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