Package info.dmtree
Class DmtIllegalStateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
info.dmtree.DmtIllegalStateException
- All Implemented Interfaces:
Serializable
Unchecked illegal state exception. This class is used in DMT because
java.lang.IllegalStateException does not exist in CLDC.
- Version:
- $Revision: 6083 $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate an instance of the exception with no message.DmtIllegalStateException
(String message) Create an instance of the exception with the specified message.DmtIllegalStateException
(String message, Throwable cause) Create an instance of the exception with the specified message and cause exception.Create an instance of the exception with the specified cause exception and no message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DmtIllegalStateException
public DmtIllegalStateException()Create an instance of the exception with no message. -
DmtIllegalStateException
Create an instance of the exception with the specified message.- Parameters:
message
- the reason for the exception
-
DmtIllegalStateException
Create an instance of the exception with the specified cause exception and no message.- Parameters:
cause
- the cause of the exception
-
DmtIllegalStateException
Create an instance of the exception with the specified message and cause exception.- Parameters:
message
- the reason for the exceptioncause
- the cause of the exception
-
-
Method Details
-
getCause
Returns the cause of this exception ornull
if no cause was set. -
initCause
Initializes the cause of this exception to the specified value.- Overrides:
initCause
in classThrowable
- Parameters:
cause
- The cause of this exception.- Returns:
- This exception.
- Throws:
IllegalArgumentException
- If the specified cause is this exception.IllegalStateException
- If the cause of this exception has already been set.- Since:
- 1.0.1
-