Module digint.errors
errors
Holds all error classes for the digint module.
Classes
class BaseInvalidOpperationError (*args, **kwargs)-
Inherits
ValueErrorRaised when a given opperation is impossible with a given base.
Expand source code
class BaseInvalidOpperationError(ValueError): """ `BaseInvalidOpperationError` Inherits `ValueError` Raised when a given opperation is impossible with a given base. """Ancestors
- builtins.ValueError
- builtins.Exception
- builtins.BaseException
class BaseValueError (*args, **kwargs)-
Inherits
ValueErrorRaised when a given value is impossible to be represented in a given base.
Expand source code
class BaseValueError(ValueError): """ `BaseValueError` Inherits `ValueError` Raised when a given value is impossible to be represented in a given base. """Ancestors
- builtins.ValueError
- builtins.Exception
- builtins.BaseException
class NotationError (*args, **kwargs)-
Expand source code
class NotationError(ValueError): """ `NotationError` Inherits `ValueError` Raised when a error is encountered during notation. """Ancestors
- builtins.ValueError
- builtins.Exception
- builtins.BaseException