Class ProxyDisposedRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.remoting.RemotingRuntimeException
org.refcodes.remoting.ProxyDisposedRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class ProxyDisposedRuntimeException extends RemotingRuntimeException
This is a predictable exception. It is thrown by any object implementing the GenericDisposeable interface. This exception can be avoided by first testing the value returned by the method isDisposed() of the interface GenericDisposeable.
See Also:
  • Constructor Details

    • ProxyDisposedRuntimeException

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

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

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

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

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

      public ProxyDisposedRuntimeException(Throwable aCause)
      Instantiates a new proxy disposed runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.