View Javadoc

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