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