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