Class DmtIllegalStateException

All Implemented Interfaces:
Serializable

public class DmtIllegalStateException extends RuntimeException
Unchecked illegal state exception. This class is used in DMT because java.lang.IllegalStateException does not exist in CLDC.
See Also:
  • Constructor Details

    • DmtIllegalStateException

      public DmtIllegalStateException()
      Create an instance of the exception with no message.
    • DmtIllegalStateException

      public DmtIllegalStateException(String message)
      Create an instance of the exception with the specified message.
      Parameters:
      message - the reason for the exception
    • DmtIllegalStateException

      public DmtIllegalStateException(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(String message, Throwable cause)
      Create an instance of the exception with the specified message and cause exception.
      Parameters:
      message - the reason for the exception
      cause - the cause of the exception