1 package com.atlassian.plugin.event.events;
2
3 import com.atlassian.annotations.PublicApi;
4 import com.atlassian.plugin.ModuleDescriptor;
5
6 /**
7 * Signifies a plugin module is now unavailable outside the usual installation process.
8 *
9 * @see com.atlassian.plugin.event.events
10 * @since 2.5.0
11 */
12 @PublicApi
13 public class PluginModuleUnavailableEvent extends PluginModuleEvent {
14 public PluginModuleUnavailableEvent(final ModuleDescriptor<?> module) {
15 super(module);
16 }
17 }