NotFoundException

Documentation for the `NotFoundException` class.

Namespace blazingapi.exceptions

The NotFoundException class is a subclass of the APIException class.

It should be raised when a resource is not found.

Class Definition

class NotFoundException(APIException):
    status_code = 404
    default_detail = 'The requested resource was not found.'
    default_code = 'not_found'