java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.jooby.exception.StartupException
- All Implemented Interfaces:
Serializable
Thrown when Jooby was unable to initialize and start an application up.
- See Also:
-
Constructor Summary
ConstructorDescriptionStartupException
(String message) Creates a new instance of this class with the specified message.StartupException
(String message, Throwable cause) Creates a new instance of this class with the specified message and 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
Creates a new instance of this class with the specified message.- Parameters:
message
- The message
-
StartupException
Creates a new instance of this class with the specified message and cause.- Parameters:
message
- The messagecause
- The cause
-