Class RemoteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.RemoteException
-
- All Implemented Interfaces:
java.io.Serializable
public class RemoteException extends java.lang.Exception
This exception is thrown whenever an error occurs on remote node.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteException()
Default constructor.RemoteException(java.lang.String message)
Overloaded ConstructorRemoteException(java.lang.String message, java.lang.Throwable cause)
Overloaded ConstructorRemoteException(java.lang.Throwable cause)
Overloaded Constructor
-
-
-
Constructor Detail
-
RemoteException
public RemoteException(java.lang.Throwable cause)
Overloaded Constructor- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
RemoteException
public RemoteException(java.lang.String message, java.lang.Throwable cause)
Overloaded Constructor- Parameters:
message
- detail messagecause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
RemoteException
public RemoteException(java.lang.String message)
Overloaded Constructor- Parameters:
message
- detail message
-
RemoteException
public RemoteException()
Default constructor.
-
-