Package org.refcodes.remoting
Class RemotingRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.refcodes.exception.AbstractRuntimeException
-
- org.refcodes.remoting.RemotingRuntimeException
-
- Direct Known Subclasses:
DuplicateInstanceIdRuntimeException
,DuplicateSessionIdRuntimeException
,InvalidMethodReplyRuntimeException
,InvalidMethodRequestRuntimeException
,ProxyDisposedRuntimeException
,UnknownInstanceIdRuntimeException
public abstract class RemotingRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The Class RemotingRuntimeException.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description RemotingRuntimeException(java.lang.String message)
Instantiates a new remoting runtime exception.RemotingRuntimeException(java.lang.String aMessage, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.RemotingRuntimeException(java.lang.String message, java.lang.Throwable cause)
Instantiates a new remoting runtime exception.RemotingRuntimeException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.RemotingRuntimeException(java.lang.Throwable cause)
Instantiates a new remoting runtime exception.RemotingRuntimeException(java.lang.Throwable aCause, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.
-
-
-
Constructor Detail
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.String aMessage, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.- Parameters:
aMessage
- the messageaErrorCode
- the error code
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.- Parameters:
aMessage
- the messageaCause
- the causeaErrorCode
- the error code
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.String message, java.lang.Throwable cause)
Instantiates a new remoting runtime exception.- Parameters:
message
- the messagecause
- the cause
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.String message)
Instantiates a new remoting runtime exception.- Parameters:
message
- the message
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.Throwable aCause, java.lang.String aErrorCode)
Instantiates a new remoting runtime exception.- Parameters:
aCause
- the causeaErrorCode
- the error code
-
RemotingRuntimeException
public RemotingRuntimeException(java.lang.Throwable cause)
Instantiates a new remoting runtime exception.- Parameters:
cause
- the cause
-
-