Package edu.rit.mp

Class ChannelClosedException

All Implemented Interfaces:
Serializable

public class ChannelClosedException extends IOException
Class ChannelClosedException is thrown to indicate that an I/O operation failed because the channel was closed.
Version:
26-Oct-2006
Author:
Alan Kaminsky
See Also:
  • Constructor Details

    • ChannelClosedException

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

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

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

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