Class ChannelNotConnectedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.ChannelException
-
- com.alachisoft.ncache.runtime.exceptions.ChannelNotConnectedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ChannelNotConnectedException extends ChannelException implements java.io.Serializable
This class represents the class for all exception types thrown by Channel.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChannelNotConnectedException()Default ConstructorChannelNotConnectedException​(java.lang.String reason)Overload constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a string representation of the object.-
Methods inherited from class com.alachisoft.ncache.runtime.exceptions.ChannelException
getCause, printStackTrace
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
Returns a string representation of the object. In general, thetoStringmethod returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.The
toStringmethod for classObjectreturns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:getClass().getName() + '@' + Integer.toHexString(hashCode())
- Overrides:
toStringin classChannelException- Returns:
- a string representation of the object.
-
-