1 package com.atlassian.config.bootstrap;
2
3 /**
4 * BootstrapException: reports exceptions for any bootstrapping activities nickf Nov 9, 2004 12:58:36 PM
5 */
6 public class BootstrapException extends Exception
7 {
8 public BootstrapException()
9 {
10 }
11
12 public BootstrapException(String message)
13 {
14 super(message);
15 }
16
17 public BootstrapException(Throwable cause)
18 {
19 super(cause);
20 }
21
22 public BootstrapException(String message, Throwable cause)
23 {
24 super(message, cause);
25 }
26 }