Package-level declarations

Types

Link copied to clipboard
class ClientTimeout(message: String, uri: Uri? = null) : RemoteRequestFailed
Link copied to clipboard
class Forbidden(message: String, uri: Uri? = null) : RemoteRequestFailed
Link copied to clipboard
class GatewayTimeout(message: String, uri: Uri? = null) : RemoteRequestFailed
Link copied to clipboard
class NotFound(message: String, uri: Uri? = null) : RemoteRequestFailed
Link copied to clipboard
open class RemoteRequestFailed(val status: Status, message: String, uri: Uri? = null) : RuntimeException

This hierarchy of exceptions should be used to indicate that an upstream remote system has failed with a non-successful status code which caused us to stop processing. They are designed to be used with the Server and Client filters which will allow automatic handling and propagation of erroneous responses from upstream.

Link copied to clipboard
class Unauthorized(message: String, uri: Uri? = null) : RemoteRequestFailed