1 package com.atlassian.plugin;
2
3 /**
4 * Generic plugin exception.
5 */
6 ///CLOVER:OFF
7 public class PluginException extends RuntimeException
8 {
9 public PluginException()
10 {
11 super();
12 }
13
14 public PluginException(String s)
15 {
16 super(s);
17 }
18
19 public PluginException(Throwable throwable)
20 {
21 super(throwable);
22 }
23
24 public PluginException(String s, Throwable throwable)
25 {
26 super(s, throwable);
27 }
28
29 }