Class CreationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.microbean.bean.BeanException
org.microbean.bean.CreationException
- All Implemented Interfaces:
Serializable
A
BeanException
indicating a problem with creation.- Author:
- Laird Nelson
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newCreationException
.CreationException
(String message) Creates a newCreationException
.CreationException
(String message, Throwable cause) Creates a newCreationException
.CreationException
(Throwable cause) Creates a newCreationException
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CreationException
public CreationException()Creates a newCreationException
. -
CreationException
Creates a newCreationException
.- Parameters:
message
- a detail message; may benull
-
CreationException
Creates a newCreationException
.- Parameters:
cause
- aThrowable
that caused thisCreationException
to be created; may benull
-
CreationException
Creates a newCreationException
.- Parameters:
message
- a detail message; may benull
cause
- aThrowable
that caused thisCreationException
to be created; may benull
-