# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ Python's standard exception class hierarchy. Exceptions found here are defined both in the exceptions module and the built-in namespace. It is recommended that user-defined exceptions inherit from Exception. See the documentation for the exception inheritance hierarchy. """ class ArithmeticError(StandardError): """ Base class for arithmetic errors. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class AssertionError(StandardError): """ Assertion failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class AttributeError(StandardError): """ Attribute not found. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class BaseException(object): """ Common base class for all exceptions """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass args = property(None, None, None, ) message = property(None, None, None, ) class BufferError(StandardError): """ Buffer error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class BytesWarning(Warning): """ Base class for warnings about bytes and buffer related problems, mostly related to conversion from str or comparing to str. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class DeprecationWarning(Warning): """ Base class for warnings about deprecated features. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class EOFError(StandardError): """ Read beyond end of file. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class EnvironmentError(StandardError): """ Base class for I/O related errors. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass errno = None filename = None strerror = None class Exception(BaseException): """ Common base class for all non-exit exceptions. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class FloatingPointError(ArithmeticError): """ Floating point operation failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class FutureWarning(Warning): """ Base class for warnings about constructs that will change semantically in the future. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class GeneratorExit(BaseException): """ Request that a generator exit. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class IOError(EnvironmentError): """ I/O operation failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class ImportError(StandardError): """ Import can't find module, or can't find name in module. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class ImportWarning(Warning): """ Base class for warnings about probable mistakes in module imports """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class IndentationError(SyntaxError): """ Improper indentation. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class IndexError(LookupError): """ Sequence index out of range. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class KeyError(LookupError): """ Mapping key not found. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class KeyboardInterrupt(BaseException): """ Program interrupted by user. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class LookupError(StandardError): """ Base class for lookup errors. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class MemoryError(StandardError): """ Out of memory. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class NameError(StandardError): """ Name not found globally. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class NotImplementedError(RuntimeError): """ Method or function hasn't been implemented yet. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class OSError(EnvironmentError): """ OS system call failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class OverflowError(ArithmeticError): """ Result too large to be represented. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class PendingDeprecationWarning(Warning): """ Base class for warnings about features which will be deprecated in the future. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class ReferenceError(StandardError): """ Weak ref proxy used after referent went away. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class RuntimeError(StandardError): """ Unspecified run-time error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class RuntimeWarning(Warning): """ Base class for warnings about dubious runtime behavior. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class StandardError(Exception): """ Base class for all standard Python exceptions that do not represent interpreter exiting. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class StopIteration(Exception): """ Signal the end from iterator.next(). """ def __init__(self): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class SyntaxError(StandardError): """ Invalid syntax. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass filename = None lineno = None msg = None offset = None print_file_and_line = None text = None class SyntaxWarning(Warning): """ Base class for warnings about dubious syntax. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class SystemError(StandardError): """ Internal error in the Python interpreter. Please report this to the Python maintainer, along with the traceback, the Python version, and the hardware/OS platform and version. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class SystemExit(BaseException): """ Request to exit from the interpreter. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass code = None class TabError(IndentationError): """ Improper mixture of spaces and tabs. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class TypeError(StandardError): """ Inappropriate argument type. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class UnboundLocalError(NameError): """ Local name referenced but not bound to a value. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class UnicodeDecodeError(UnicodeError): """ Unicode decoding error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass encoding = None end = None object = None reason = None start = None class UnicodeEncodeError(UnicodeError): """ Unicode encoding error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass encoding = None end = None object = None reason = None start = None class UnicodeError(ValueError): """ Unicode related error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class UnicodeTranslateError(UnicodeError): """ Unicode translation error. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass encoding = None end = None object = None reason = None start = None class UnicodeWarning(Warning): """ Base class for warnings about Unicode related problems, mostly related to conversion problems. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class UserWarning(Warning): """ Base class for warnings generated by user code. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class ValueError(StandardError): """ Inappropriate argument value (of correct type). """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class Warning(Exception): """ Base class for warning categories. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class WindowsError(OSError): """ MS-Windows OS system call failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass errno = None filename = None strerror = None winerror = None class ZeroDivisionError(ArithmeticError): """ Second argument to a division or modulo operation was zero. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass __doc__ = """Python's standard exception class hierarchy. Exceptions found here are defined both in the exceptions module and the built-in namespace. It is recommended that user-defined exceptions inherit from Exception. See the documentation for the exception inheritance hierarchy. """ __name__ = 'exceptions' __package__ = None