open class ChannelIOException : IOException
An exception thrown when an IO error occurred during reading or writing to/from the underlying channel. The typical error is "connection reset" and so on.
ChannelIOException(message: String, exception: Throwable)
An exception thrown when an IO error occurred during reading or writing to/from the underlying channel. The typical error is "connection reset" and so on. |
class ChannelReadException : ChannelIOException
An exception that is thrown when an IO error occurred during reading from the request channel. Usually it happens when a remote client closed the connection. |
|
class ChannelWriteException : ChannelIOException
An exception that is thrown when an IO error occurred during writing to the destination channel. Usually it happens when a remote client closed the connection. |