Class ChannelClosedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.ChannelException
-
- com.alachisoft.ncache.runtime.exceptions.ChannelClosedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ChannelClosedException extends ChannelException implements java.io.Serializable
This class represents the class for all exception types thrown by JGroups.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChannelClosedException()
Default constructorChannelClosedException(java.lang.String msg)
Overload constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
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, thetoString
method 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
toString
method for classObject
returns 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:
toString
in classChannelException
- Returns:
- a string representation of the object.
-
-