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)
Expand source code
class ConfigFileNotFoundError(FileNotFoundError):
    """
    The config file not found.
    """

The config file not found.

Ancestors

  • builtins.FileNotFoundError
  • builtins.OSError
  • builtins.Exception
  • builtins.BaseException
class FatalError (*args, **kwargs)
Expand source code
class FatalError(Exception):
    """Fatal Error, the program need shutdown immediately"""

Fatal Error, the program need shutdown immediately

Ancestors

  • builtins.Exception
  • builtins.BaseException
class GuessFailed (*args, **kwargs)
Expand source code
class GuessFailed(Warning):
    """
    Your function do some guess operation but cause a failed, this is a 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)
Expand source code
class InkscapeProcessError(Exception):
    pass

Common base class for all non-exit exceptions.

Ancestors

  • builtins.Exception
  • builtins.BaseException
class NotFloatError (*args, **kwargs)
Expand source code
class NotFloatError(ValueError):
    """Need input is a float"""

Need input is a float

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class NotIntegerError (*args, **kwargs)
Expand source code
class NotIntegerError(ValueError):
    """Need input is an integer"""

Need input is an integer

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class NotSupportedWarning (*args, **kwargs)
Expand source code
class NotSupportedWarning(UserWarning):
    """This feature is not supported, program will ignore it."""

This feature is not supported, program will ignore it.

Ancestors

  • builtins.UserWarning
  • builtins.Warning
  • builtins.Exception
  • builtins.BaseException
class OutOfChoiceError (*args, **kwargs)
Expand source code
class OutOfChoiceError(ValueError):
    """The parameter is out of given choice"""

The parameter is out of given choice

Ancestors

  • builtins.ValueError
  • builtins.Exception
  • builtins.BaseException
class OutOfRangeError (*args, **kwargs)
Expand source code
class OutOfRangeError(ValueError):
    """The input required a range"""

The input required a range

Ancestors

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

Common base class for all non-exit exceptions.

Ancestors

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

Common base class for all non-exit exceptions.

Ancestors

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

Common base class for all non-exit exceptions.

Ancestors

  • builtins.Exception
  • builtins.BaseException
class RequireArgumentError (*args, **kwargs)
Expand source code
class RequireArgumentError(Exception):
    """
    Require some argument
    """

Require some argument

Ancestors

  • builtins.Exception
  • builtins.BaseException
class UnDefinedError (*args, **kwargs)
Expand source code
class UnDefinedError(Exception):
    """UndefinedError, lately we will talk about it. """

UndefinedError, lately we will talk about it.

Ancestors

  • builtins.Exception
  • builtins.BaseException