Class DisposedException

All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap

public class DisposedException extends AbstractRuntimeException
A DisposedException may be thrown in case of using of a disposed instance's methods.
See Also:
  • Constructor Details

    • DisposedException

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

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

      public DisposedException(Throwable aCause)
      Instantiates a new disposed exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
    • DisposedException

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

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

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