xminds.api.exceptions

This module defines all custom API exceptions. All exceptions inherit from XMindsError.

Exceptions

AuthError([data])

DuplicatedError([data])

ForbiddenError([data])

JwtTokenExpired([data])

MethodNotAllowed([data])

NotFoundError([data])

RefreshTokenExpired([data])

RequestError([data])

ServerError([data])

ServerUnavailable([data])

TooManyRequests([retry_after])

WrongData([data])

XMindsError([data])

Base class for all Crossing Minds Exceptions

exception XMindsError(data=None)

Base class for all Crossing Minds Exceptions

__init__(data=None)
exception ServerError(data=None)
exception ServerUnavailable(data=None)
exception TooManyRequests(retry_after=None)
__init__(retry_after=None)
exception AuthError(data=None)
exception JwtTokenExpired(data=None)
exception RefreshTokenExpired(data=None)
exception RequestError(data=None)
exception WrongData(data=None)
exception DuplicatedError(data=None)
exception ForbiddenError(data=None)
exception NotFoundError(data=None)
exception MethodNotAllowed(data=None)