View Javadoc
1   package com.atlassian.activeobjects.internal;
2   
3   import com.atlassian.activeobjects.ActiveObjectsPluginException;
4   
5   /**
6    * Exception thrown when an error occurs during initialization.
7    */
8   public class ActiveObjectsInitException extends ActiveObjectsPluginException {
9       public ActiveObjectsInitException(String msg) {
10          super(msg);
11      }
12  
13      public ActiveObjectsInitException(String msg, Throwable cause) {
14          super(msg, cause);
15      }
16  }