Class MaxClientReachedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.CacheException
-
- com.alachisoft.ncache.runtime.exceptions.MaxClientReachedException
-
- All Implemented Interfaces:
java.io.Serializable
public class MaxClientReachedException extends CacheException
This exception is thrown whenever an error occurs on remote node.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MaxClientReachedException()Constructs anGeneralFailureExceptionwithnullas its error detail message.MaxClientReachedException(java.lang.String s)Constructs anGeneralFailureExceptionwith the specified detail message.MaxClientReachedException(java.lang.String s, java.lang.Throwable exception)Overloaded constructor
-
Method Summary
-
Methods inherited from class com.alachisoft.ncache.runtime.exceptions.CacheException
getErrorCode, printStackTrace, setErrorCode
-
-
-
-
Constructor Detail
-
MaxClientReachedException
public MaxClientReachedException()
Constructs anGeneralFailureExceptionwithnullas its error detail message.
-
MaxClientReachedException
public MaxClientReachedException(java.lang.String s)
Constructs anGeneralFailureExceptionwith the specified detail message. The error message stringscan later be retrieved by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
s- the detail message.
-
MaxClientReachedException
public MaxClientReachedException(java.lang.String s, java.lang.Throwable exception)Overloaded constructor- Parameters:
s- the detail message.exception- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
-