Package edu.rit.mp

Class ChannelGroupClosedException

All Implemented Interfaces:
Serializable

public class ChannelGroupClosedException extends IOException
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 Details

    • ChannelGroupClosedException

      public ChannelGroupClosedException()
      Create a new channel group closed exception with no detail message and no cause.
    • ChannelGroupClosedException

      public ChannelGroupClosedException(String msg)
      Create a new channel group closed exception with the given detail message and no cause.
      Parameters:
      msg - Detail message.
    • ChannelGroupClosedException

      public ChannelGroupClosedException(Throwable cause)
      Create a new channel group closed exception with no detail message and the given cause.
      Parameters:
      cause - Cause.
    • ChannelGroupClosedException

      public ChannelGroupClosedException(String msg, Throwable cause)
      Create a new channel group closed exception with the given detail message and the given cause.
      Parameters:
      msg - Detail message.
      cause - Cause.