Class DisposeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.component.ComponentException
org.refcodes.component.DisposeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class DisposeException extends ComponentException
Thrown in case disposing a component caused problems. Usually a method similar to "dispose()" throws such an exception.
See Also:
  • Constructor Details

    • DisposeException

      public DisposeException(String aMessage, String aErrorCode)
      Instantiates a new dispose exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • DisposeException

      public DisposeException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new dispose exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • DisposeException

      public DisposeException(String aMessage, Throwable aCause)
      Instantiates a new dispose exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • DisposeException

      public DisposeException(String aMessage)
      Instantiates a new dispose exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • DisposeException

      public DisposeException(Throwable aCause, String aErrorCode)
      Instantiates a new dispose exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • DisposeException

      public DisposeException(Throwable aCause)
      Instantiates a new dispose exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.