Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
open class DavException(message: String? = null, cause: Throwable? = null, val statusCode: Int? = null, val requestExcerpt: String? = null, val responseExcerpt: String? = null, val errors: List<Error> = emptyList()) : Exception

Signals that an error occurred during a WebDAV-related operation.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open class HttpException(message: String? = null, cause: Throwable? = null, val statusCode: Int, val requestExcerpt: String?, val responseExcerpt: String?, val errors: List<Error> = emptyList()) : DavException

Signals that a HTTP error was sent by the server in the context of a WebDAV operation.

Link copied to clipboard
Link copied to clipboard
class ServiceUnavailableException(response: HttpResponse) : HttpException
Link copied to clipboard