Module pywander.exceptions

python系统内的异常 +– Exception +– StopIteration +– StopAsyncIteration +– ArithmeticError | +– FloatingPointError | +– OverflowError | +– ZeroDivisionError +– AssertionError +– AttributeError +– BufferError +– EOFError +– ImportError | +– ModuleNotFoundError +– LookupError | +– IndexError | +– KeyError +– MemoryError +– NameError | +– UnboundLocalError +– OSError | +– BlockingIOError | +– ChildProcessError | +– ConnectionError | | +– BrokenPipeError | | +– ConnectionAbortedError | | +– ConnectionRefusedError | | +– ConnectionResetError | +– FileExistsError | +– FileNotFoundError | +– InterruptedError | +– IsADirectoryError | +– NotADirectoryError | +– PermissionError | +– ProcessLookupError | +– TimeoutError +– ReferenceError +– RuntimeError | +– NotImplementedError | +– RecursionError +– SyntaxError | +– IndentationError | +– TabError +– SystemError +– TypeError +– ValueError | +– UnicodeError | +– UnicodeDecodeError | +– UnicodeEncodeError | +– UnicodeTranslateError +– Warning +– DeprecationWarning +– PendingDeprecationWarning +– RuntimeWarning +– SyntaxWarning +– UserWarning +– FutureWarning +– ImportWarning +– UnicodeWarning +– BytesWarning +– ResourceWarning

Classes

class ConfigFileNotFoundError (*args, **kwargs)

The config file not found.

Expand source code
class ConfigFileNotFoundError(FileNotFoundError):
    """
    The config file not found.
    """

Ancestors

  • builtins.FileNotFoundError
  • builtins.OSError
  • builtins.Exception
  • builtins.BaseException
class FatalError

Fatal Error, the program need shutdown imediately

Expand source code
class FatalError():
    """Fatal Error, the program need shutdown imediately"""
class GuessFailed (*args, **kwargs)

Your function do some guess operation but cause a failed, this is a warning.

Expand source code
class GuessFailed(Warning):
    """
    Your function do some guess operation but cause a failed, this is a warning.
    """

Ancestors

  • builtins.Warning
  • builtins.Exception
  • builtins.BaseException
class InkscapeProcessError (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class InkscapeProcessError(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class NotFloatError (*args, **kwargs)

Need input is a float

Expand source code
class NotFloatError(ValueError):
    """Need input is a float"""

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class NotIntegerError (*args, **kwargs)

Need input is a integer

Expand source code
class NotIntegerError(ValueError):
    """Need input is a integer"""

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class NotSupportedWarning (*args, **kwargs)

This feature is not supported, program will ignore it.

Expand source code
class NotSupportedWarning(UserWarning):
    """This feature is not supported, program will ignore it."""

Ancestors

  • builtins.UserWarning
  • builtins.Warning
  • builtins.Exception
  • builtins.BaseException
class OutOfChoiceError (*args, **kwargs)

The parameter is out of given choice

Expand source code
class OutOfChoiceError(ValueError):
    """The parameter is out of given choice"""

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class OutOfRangeError (*args, **kwargs)

The input required a range

Expand source code
class OutOfRangeError(ValueError):
    """The input required a range"""

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class PdftocairoProcessError (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class PdftocairoProcessError(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class PillowProcessError (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class PillowProcessError(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class RequireArgumentError (*args, **kwargs)

Require some argument

Expand source code
class RequireArgumentError(Exception):
    """
    Require some argument
    """

Ancestors

  • builtins.Exception
  • builtins.BaseException
class UnDefinedError

UndefinedError, lately we will talk about it.

Expand source code
class UnDefinedError():
    """UndefinedError, lately we will talk about it. """