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 public IllegalPluginStateException() {
10 }
11
12 public IllegalPluginStateException(String s) {
13 super(s);
14 }
15
16 public IllegalPluginStateException(Throwable throwable) {
17 super(throwable);
18 }
19
20 public IllegalPluginStateException(String s, Throwable throwable) {
21 super(s, throwable);
22 }
23 }