View Javadoc

1   /*
2    * Atlassian Source Code Template.
3    * User: mike
4    * Date: Dec 22, 2001
5    * Time: 3:06:17 PM
6    * CVS Revision: $Revision: 1.1 $
7    * Last CVS Commit: $Date: 2002/12/02 13:20:59 $
8    * Author of last CVS Commit: $Author: mike $
9    */
10  package com.atlassian.core;
11  
12  import org.apache.commons.lang.exception.NestableException;
13  
14  ///CLOVER:OFF
15  
16  public class AtlassianCoreException extends NestableException
17  {
18      public AtlassianCoreException()
19      {
20      }
21  
22      public AtlassianCoreException(String s)
23      {
24          super(s);
25      }
26  
27      public AtlassianCoreException(Throwable throwable)
28      {
29          super(throwable);
30      }
31  
32      public AtlassianCoreException(String s, Throwable throwable)
33      {
34          super(s, throwable);
35      }
36  }