Class RMException

java.lang.Object
java.lang.Throwable
java.lang.Error
com.reportmill.base.RMException
All Implemented Interfaces:
Serializable

public class RMException extends Error
A simple subclass of Error that RM uses to indicate errors thrown by RM.
See Also:
  • Constructor Details

    • RMException

      public RMException()
      Creates a new uninitialized exception.
    • RMException

      public RMException(String s)
      Creates a new exception for a given exception string.
    • RMException

      public RMException(Throwable t)
      Creates a new exception for a given throwable.
  • Method Details

    • fillInStackTrace

      public Throwable fillInStackTrace()
      Overrides standard error method to allow encapsulated throwable to provide stacktrace.
      Overrides:
      fillInStackTrace in class Throwable
    • getLocalizedMessage

      public String getLocalizedMessage()
      Overrides standard error method to allow encapsulated throwable to provide message.
      Overrides:
      getLocalizedMessage in class Throwable
    • getMessage

      public String getMessage()
      Overrides standard error method to allow encapsulated throwable to provide message.
      Overrides:
      getMessage in class Throwable
    • printStackTrace

      public void printStackTrace()
      Overrides standard error method to allow encapsulated throwable to provide stacktrace.
      Overrides:
      printStackTrace in class Throwable
    • printStackTrace

      public void printStackTrace(PrintStream s)
      Overrides standard error method to allow encapsulated throwable to provide stacktrace.
      Overrides:
      printStackTrace in class Throwable
    • printStackTrace

      public void printStackTrace(PrintWriter s)
      Overrides standard error method to allow encapsulated throwable to provide stacktrace.
      Overrides:
      printStackTrace in class Throwable
    • toString

      public String toString()
      Overrides standard error method to allow encapsulated throwable to provide string.
      Overrides:
      toString in class Throwable