1 package com.atlassian.plugin;
2
3 /**
4 * Thrown when a plugin operation has been attempted when the plugin is in an incompatible state.
5 *
6 * @since 2.2.0
7 */
8 public class IllegalPluginStateException extends PluginException
9 {
10 public IllegalPluginStateException()
11 {
12 }
13
14 public IllegalPluginStateException(String s)
15 {
16 super(s);
17 }
18
19 public IllegalPluginStateException(Throwable throwable)
20 {
21 super(throwable);
22 }
23
24 public IllegalPluginStateException(String s, Throwable throwable)
25 {
26 super(s, throwable);
27 }
28 }