View Javadoc

1   package com.atlassian.plugin.osgi.factory.transform;
2   
3   /**
4    * Generic wrapper exception for all exceptions thrown during plugin transformation
5    */
6   public class PluginTransformationException extends RuntimeException
7   {
8       public PluginTransformationException()
9       {
10      }
11  
12      public PluginTransformationException(String s)
13      {
14          super(s);
15      }
16  
17      public PluginTransformationException(String s, Throwable throwable)
18      {
19          super(s, throwable);
20      }
21  
22      public PluginTransformationException(Throwable throwable)
23      {
24          super(throwable);
25      }
26  }