Package edu.rit.mp
Class ChannelGroupClosedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
edu.rit.mp.ChannelGroupClosedException
- All Implemented Interfaces:
Serializable
Class ChannelGroupClosedException is thrown to indicate that an I/O operation
failed because the channel group was closed.
- Version:
- 26-Oct-2006
- Author:
- Alan Kaminsky
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a new channel group closed exception with no detail message and no cause.Create a new channel group closed exception with the given detail message and no cause.ChannelGroupClosedException
(String msg, Throwable cause) Create a new channel group closed exception with the given detail message and the given cause.Create a new channel group closed exception with no detail message and the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ChannelGroupClosedException
public ChannelGroupClosedException()Create a new channel group closed exception with no detail message and no cause. -
ChannelGroupClosedException
Create a new channel group closed exception with the given detail message and no cause.- Parameters:
msg
- Detail message.
-
ChannelGroupClosedException
Create a new channel group closed exception with no detail message and the given cause.- Parameters:
cause
- Cause.
-
ChannelGroupClosedException
Create a new channel group closed exception with the given detail message and the given cause.- Parameters:
msg
- Detail message.cause
- Cause.
-