View Javadoc

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