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

Represents an invalid XML (WebDAV) property. This is for instance thrown when parsing something like <multistatus>...<getetag><novalue/></getetag> because a text value would be expected.

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