Class CastorIllegalStateException

  • All Implemented Interfaces:
    java.io.Serializable

    public final class CastorIllegalStateException
    extends java.lang.IllegalStateException
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Throwable getCause()
      Match the JDK 1.4 Throwable version of getCause() on JDK<1.4 systems.
      void printStackTrace()
      Print a stack trace to stderr.
      void printStackTrace​(java.io.PrintStream s)
      Print a stack trace to the specified PrintStream.
      void printStackTrace​(java.io.PrintWriter w)
      Print a stack trace to the specified PrintWriter.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CastorIllegalStateException

        public CastorIllegalStateException()
      • CastorIllegalStateException

        public CastorIllegalStateException​(java.lang.String message)
      • CastorIllegalStateException

        public CastorIllegalStateException​(java.lang.Throwable cause)
      • CastorIllegalStateException

        public CastorIllegalStateException​(java.lang.String message,
                                           java.lang.Throwable cause)
    • Method Detail

      • getCause

        public java.lang.Throwable getCause()
        Match the JDK 1.4 Throwable version of getCause() on JDK<1.4 systems.
        Overrides:
        getCause in class java.lang.Throwable
        Returns:
        The throwable cause of this exception.
      • printStackTrace

        public void printStackTrace()
        Print a stack trace to stderr.
        Overrides:
        printStackTrace in class java.lang.Throwable
      • printStackTrace

        public void printStackTrace​(java.io.PrintStream s)
        Print a stack trace to the specified PrintStream.
        Overrides:
        printStackTrace in class java.lang.Throwable
        Parameters:
        s - The PrintStream to print a stack trace to.
      • printStackTrace

        public void printStackTrace​(java.io.PrintWriter w)
        Print a stack trace to the specified PrintWriter.
        Overrides:
        printStackTrace in class java.lang.Throwable
        Parameters:
        w - The PrintWriter to print a stack trace to.