View Javadoc

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