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      public OsgiContainerException() {
11      }
12  
13      public OsgiContainerException(String s) {
14          super(s);
15      }
16  
17      public OsgiContainerException(String s, Throwable throwable) {
18          super(s, throwable);
19      }
20  
21      public OsgiContainerException(Throwable throwable) {
22          super(throwable);
23      }
24  }