Class DisposeException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DisposeException
    extends java.lang.Exception
    This is an Exception that is thrown during dispose actions.
    Since:
    1.1
    Author:
    Eugen Neufeld
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DisposeException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      DisposeException​(java.lang.Throwable cause)
      Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
    • Method Summary

      • Methods inherited from class java.lang.Throwable

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

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

      • DisposeException

        public DisposeException​(java.lang.String message,
                                java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - the detail message (which is saved for later retrieval by the getMessage() method).
        cause - the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • DisposeException

        public DisposeException​(java.lang.Throwable cause)
        Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString())
        Parameters:
        cause - the cause (which is saved for later retrieval by the getCause() method).