Package com.atlassian.bamboo.exception
Class StartupException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.atlassian.bamboo.exception.StartupException
-
- All Implemented Interfaces:
Serializable
public class StartupException extends RuntimeException
Exception thrown to indicate a startup failure in the Bamboo server/agent.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StartupException()
Constructs a new StartupException withnull
as its detail message.StartupException(String message)
Constructs a new StartupException with the specified detail message.StartupException(String message, Throwable cause)
Constructs a new StartupException with the specified detail message and cause.StartupException(Throwable cause)
Constructs a new StartupException with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
StartupException
public StartupException()
Constructs a new StartupException withnull
as its detail message.
-
StartupException
public StartupException(String message)
Constructs a new StartupException with the specified detail message.- Parameters:
message
- the detail message
-
StartupException
public StartupException(String message, Throwable cause)
Constructs a new StartupException with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause of the exception
-
StartupException
public StartupException(Throwable cause)
Constructs a new StartupException with the specified cause.- Parameters:
cause
- the cause of the exception
-
-