Package info.dmtree
Class DmtIllegalStateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- info.dmtree.DmtIllegalStateException
-
- All Implemented Interfaces:
java.io.Serializable
public class DmtIllegalStateException extends java.lang.RuntimeExceptionUnchecked illegal state exception. This class is used in DMT because java.lang.IllegalStateException does not exist in CLDC.- Version:
- $Revision: 6083 $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DmtIllegalStateException()Create an instance of the exception with no message.DmtIllegalStateException(java.lang.String message)Create an instance of the exception with the specified message.DmtIllegalStateException(java.lang.String message, java.lang.Throwable cause)Create an instance of the exception with the specified message and cause exception.DmtIllegalStateException(java.lang.Throwable cause)Create an instance of the exception with the specified cause exception and no message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Returns the cause of this exception ornullif no cause was set.java.lang.ThrowableinitCause(java.lang.Throwable cause)Initializes the cause of this exception to the specified value.
-
-
-
Constructor Detail
-
DmtIllegalStateException
public DmtIllegalStateException()
Create an instance of the exception with no message.
-
DmtIllegalStateException
public DmtIllegalStateException(java.lang.String message)
Create an instance of the exception with the specified message.- Parameters:
message- the reason for the exception
-
DmtIllegalStateException
public DmtIllegalStateException(java.lang.Throwable cause)
Create an instance of the exception with the specified cause exception and no message.- Parameters:
cause- the cause of the exception
-
DmtIllegalStateException
public DmtIllegalStateException(java.lang.String message, java.lang.Throwable cause)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 Detail
-
getCause
public java.lang.Throwable getCause()
Returns the cause of this exception ornullif no cause was set.- Overrides:
getCausein classjava.lang.Throwable- Returns:
- The cause of this exception or
nullif no cause was set.
-
initCause
public java.lang.Throwable initCause(java.lang.Throwable cause)
Initializes the cause of this exception to the specified value.- Overrides:
initCausein classjava.lang.Throwable- Parameters:
cause- The cause of this exception.- Returns:
- This exception.
- Throws:
java.lang.IllegalArgumentException- If the specified cause is this exception.java.lang.IllegalStateException- If the cause of this exception has already been set.- Since:
- 1.0.1
-
-