pytenno.errors

Simple module for handling errors.

This module contains no functions. It is only used to define the Error classes that the other modules use.

exception pytenno.errors.BadGateway(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.BadRequest(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.BaseError(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.Conflict(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.Forbidden(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.GatewayTimeout(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.InternalServerError(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.NotFound(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.NotImplemented(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.ServiceUnavailable(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pytenno.errors.Unauthorized(*args: object)[source]
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.