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 ///CLOVER:OFF
13
14 public class AtlassianCoreException extends Exception
15 {
16 public AtlassianCoreException()
17 {
18 }
19
20 public AtlassianCoreException(String s)
21 {
22 super(s);
23 }
24
25 public AtlassianCoreException(Throwable throwable)
26 {
27 super(throwable);
28 }
29
30 public AtlassianCoreException(String s, Throwable throwable)
31 {
32 super(s, throwable);
33 }
34 }