application.exceptions package#
Module contents#
application.exceptions
- exception application.exceptions.AuthenticationError(attempts_remaining=None)#
Bases:
ClientErrorRaised when authentication fails.
- exception application.exceptions.BadUserNameError#
Bases:
ClientErrorRaised when a username is invalid.
- exception application.exceptions.BlobDoesNotExistError(id)#
Bases:
ClientErrorRaised when a blob does not exist.
Bases:
ClientErrorRaised when a book cannot be shared.
- exception application.exceptions.BookTagDoesNotExistError(id)#
Bases:
ClientErrorRaised when a book tag does not exist.
- exception application.exceptions.BookTagExistsError(id)#
Bases:
ClientErrorRaised when a book tag already exists.
- exception application.exceptions.BugReportDoesNotExistError(id)#
Bases:
ClientErrorRaised when a bug report does not exist.
- exception application.exceptions.ClientError#
Bases:
ExceptionBase class for errors caused by a client query.
- exception application.exceptions.DocumentDoesNotExistError(id)#
Bases:
ClientErrorRaised when a document does not exist.
- exception application.exceptions.FeedDocumentDoesNotExistError(id)#
Bases:
ClientErrorRaised when a feed document does not exist.
- exception application.exceptions.FeedDoesNotExistError(id)#
Bases:
ClientErrorRaised when a feed does not exist.
- exception application.exceptions.InsufficientDiskSpace#
Bases:
ClientErrorRaised when there is not enough disk space.
- exception application.exceptions.InvalidColor(value)#
Bases:
ValueErrorRaised when a color string is not a valid 7-character hex color.
- exception application.exceptions.InvalidFeedKindError(kind)#
Bases:
ClientErrorRaised when a feed kind is not supported.
- exception application.exceptions.InvalidJWTError#
Bases:
ClientErrorRaised when a JSON web token is invalid.
- exception application.exceptions.InvalidPhone#
Bases:
ValueErrorRaised when a phone number is not exactly 10 digits.
- exception application.exceptions.InvalidResetCode#
Bases:
ClientErrorRaised when a password reset code is invalid.
- exception application.exceptions.InvalidSize(value)#
Bases:
ValueErrorRaised when a size string is not a valid CSS size.
- exception application.exceptions.InvalidSubscriptionToken#
Bases:
ClientErrorRaised when a notification subscription token is invalid.
- exception application.exceptions.ItemDoesNotExistError(id)#
Bases:
ClientErrorRaised when an item does not exist.
- exception application.exceptions.ItemExistsError(id)#
Bases:
ClientErrorRaised when an item already exists.
- exception application.exceptions.MissingConfig(config_name)#
Bases:
ClientErrorRaised when a required config item is missing.
- exception application.exceptions.RateLimitExceeded#
Bases:
ClientErrorRaised when a user exceeds their rate limit.
- exception application.exceptions.SubsonicError#
Bases:
ClientErrorRaised when an attempt to query Subsonic is made without being configured correctly.
- exception application.exceptions.UserDoesNotExistError(username)#
Bases:
ClientErrorRaised when a user does not exist.
- exception application.exceptions.UserExistsError(username)#
Bases:
ClientErrorRaised when a user already exists.
- exception application.exceptions.UserIsLocked#
Bases:
ClientErrorRaised when a user is locked.
- exception application.exceptions.WebPushException(msg)#
Bases:
ClientErrorRaised when there is an error sending a web push notification.