1 /*
2 * Copyright (c) 2003 by Atlassian Software Systems Pty. Ltd.
3 * All rights reserved.
4 */
5 package com.atlassian.config.setup;
6
7 import org.apache.commons.lang.exception.NestableException;
8
9 public class SetupException extends NestableException
10 {
11 public SetupException()
12 {
13 }
14
15 public SetupException(String message)
16 {
17 super(message);
18 }
19
20 public SetupException(String message, Throwable cause)
21 {
22 super(message, cause);
23 }
24
25 public SetupException(Throwable cause)
26 {
27 super(cause);
28 }
29 }