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
Exception thrown to indicate a startup failure in the Bamboo server/agent.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs 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 Details
-
StartupException
public StartupException()Constructs a new StartupException withnull
as its detail message. -
StartupException
Constructs a new StartupException with the specified detail message.- Parameters:
message
- the detail message
-
StartupException
Constructs a new StartupException with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause of the exception
-
StartupException
Constructs a new StartupException with the specified cause.- Parameters:
cause
- the cause of the exception
-