Package org.microspace.exception
Class InitializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.microspace.exception.InitializationException
-
- All Implemented Interfaces:
Serializable
public class InitializationException extends RuntimeException implements Serializable
This exception may occur during initialization.- Version:
- 2016-06-26
- Author:
- Gaspar Sinai - gaspar.sinai@microspace.org
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InitializationException()
InitializationException(String message)
Constructs a new exception with the specified detail message.InitializationException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.InitializationException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of 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
-
InitializationException
public InitializationException()
-
InitializationException
public InitializationException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
InitializationException
public InitializationException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
InitializationException
public InitializationException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of cause.- Parameters:
cause
- the cause
-
-