AO3Error

sealed class AO3Error : Throwable

Represents all the possible errors that may crop up in the process of interacting with AO3.

Inheritors

Types

Link copied to clipboard

Represents an error that arises from having mismatched CSRF tokens and session cookies.

Link copied to clipboard
sealed class ConnectionError : AO3Error
Link copied to clipboard
data class GenericRedirectError(val redirectUrl: String) : AO3Error.RedirectError
Link copied to clipboard
sealed class HttpError : AO3Error
Link copied to clipboard

Represents a failure to log the user in due to a mismatch in credentials.

Link copied to clipboard

Represents a scenario where the network is encountering connectivity issues.

Link copied to clipboard

Represents a 404 error.

Link copied to clipboard

Represents a situation where the content can only be accessed if the user is logged in.

Link copied to clipboard

Represents a scenario where AO3 returns a response prompting for a redirect (e.g. 302, 304).

Link copied to clipboard

Represents a 503 error.

Link copied to clipboard
data class TagNotFilterableError(val redirectUrl: String) : AO3Error.RedirectError

Represents a scenario where AO3 does not allow the client to filter on the tag. This is usually because the tag has not been marked common, and therefore it cannot be filtered on.

Link copied to clipboard
data class TagSynonymError(val synonymTag: String, val redirectUrl: String) : AO3Error.RedirectError

Represents a scenario where AO3 is redirecting the client to the works of another tag, in response to a request for the works of a particular tag. This indicates that these two tags are synonyms, and the destination tag is the canonical name for the original requested tag.

Link copied to clipboard

Represents a 429 error.

Link copied to clipboard

Represents a http error that is not handled

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard