Module pedantic.exceptions

Classes

class NotImplementedException (*args, **kwargs)
Expand source code
class NotImplementedException(Exception):
    pass

Common base class for all non-exit exceptions.

Ancestors

  • builtins.Exception
  • builtins.BaseException
class PedanticCallWithArgsException (*args, **kwargs)
Expand source code
class PedanticCallWithArgsException(PedanticException):
    pass

Common base class for all non-exit exceptions.

Ancestors

class PedanticDocstringException (*args, **kwargs)
Expand source code
class PedanticDocstringException(PedanticException):
    pass

Common base class for all non-exit exceptions.

Ancestors

class PedanticException (*args, **kwargs)
Expand source code
class PedanticException(Exception):
    pass

Common base class for all non-exit exceptions.

Ancestors

  • builtins.Exception
  • builtins.BaseException

Subclasses

class PedanticOverrideException (*args, **kwargs)
Expand source code
class PedanticOverrideException(PedanticException):
    pass

Common base class for all non-exit exceptions.

Ancestors

class PedanticTypeCheckException (*args, **kwargs)
Expand source code
class PedanticTypeCheckException(PedanticException):
    pass

Common base class for all non-exit exceptions.

Ancestors

class PedanticTypeVarMismatchException (*args, **kwargs)
Expand source code
class PedanticTypeVarMismatchException(PedanticException):
    pass

Common base class for all non-exit exceptions.

Ancestors