Module sanic_discord.rest.errors

Expand source code
class HttpException(Exception):
    """
    The base exception for all HTTP exceptions.
    """

class NotFoundException(HttpException):
    """
    If the request returns a 404."""

Classes

class HttpException (*args, **kwargs)

The base exception for all HTTP exceptions.

Expand source code
class HttpException(Exception):
    """
    The base exception for all HTTP exceptions.
    """

Ancestors

  • builtins.Exception
  • builtins.BaseException

Subclasses

class NotFoundException (*args, **kwargs)

If the request returns a 404.

Expand source code
class NotFoundException(HttpException):
    """
    If the request returns a 404."""

Ancestors