Class RemotingRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.remoting.RemotingRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
DuplicateInstanceIdRuntimeException, DuplicateSessionIdRuntimeException, InvalidMethodReplyRuntimeException, InvalidMethodRequestRuntimeException, ProxyDisposedRuntimeException, UnknownInstanceIdRuntimeException

public abstract class RemotingRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The Class RemotingRuntimeException.
See Also:
  • Constructor Details

    • RemotingRuntimeException

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

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

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

      public RemotingRuntimeException(String aMessage)
      Instantiates a new remoting runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • RemotingRuntimeException

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

      public RemotingRuntimeException(Throwable aCause)
      Instantiates a new remoting runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.