commonMain.io.ktor.util.cio.Channels.kt Maven / Gradle / Ivy
/*
* Copyright 2014-2021 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
*/
package io.ktor.util.cio
import io.ktor.utils.io.errors.*
/**
* 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.
*/
public open class ChannelIOException(message: String, exception: Throwable) : IOException(message, exception)
/**
* 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.
*/
public class ChannelWriteException(message: String = "Cannot write to a channel", exception: Throwable) :
ChannelIOException(message, exception)
/**
* 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.
*/
public class ChannelReadException(
message: String = "Cannot read from a channel",
exception: Throwable
) : ChannelIOException(message, exception)