server_errors

server_errors#

Errors used in the client-server communication.

Full path: exa.common.errors.server_errors

Exceptions

BadRequestError(message, *args)

Error raised when the request syntax is invalid or the method is unsupported in general.

ConflictError(message, *args)

This error happens when there is a conflict with the current state of the resource.

ForbiddenError(message, *args)

Error raised when the operation is forbidden for the user.

InternalServerError(message, *args)

Error raised when an unexpected error happened on the server side.

NotFoundError(message, *args)

Error raised when nothing was found with the given parameters.

ServiceUnavailableError(message, *args)

Error raised when the service is unavailable.

StationControlError(message, *args)

Base class for station control errors used in client-server communication.

UnauthorizedError(message, *args)

Error raised when the user is not authorized.

ValidationError(message, *args)

Error raised when something is unprocessable in general, for example if the input value is not acceptable.