Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
68
Dependencies/Python/Lib/test/exception_hierarchy.txt
vendored
Normal file
68
Dependencies/Python/Lib/test/exception_hierarchy.txt
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
BaseException
|
||||
├── BaseExceptionGroup
|
||||
├── GeneratorExit
|
||||
├── KeyboardInterrupt
|
||||
├── SystemExit
|
||||
└── Exception
|
||||
├── ArithmeticError
|
||||
│ ├── FloatingPointError
|
||||
│ ├── OverflowError
|
||||
│ └── ZeroDivisionError
|
||||
├── AssertionError
|
||||
├── AttributeError
|
||||
├── BufferError
|
||||
├── EOFError
|
||||
├── ExceptionGroup [BaseExceptionGroup]
|
||||
├── 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
|
||||
│ ├── PythonFinalizationError
|
||||
│ └── RecursionError
|
||||
├── StopAsyncIteration
|
||||
├── StopIteration
|
||||
├── SyntaxError
|
||||
│ └── IndentationError
|
||||
│ └── TabError
|
||||
├── SystemError
|
||||
├── TypeError
|
||||
├── ValueError
|
||||
│ └── UnicodeError
|
||||
│ ├── UnicodeDecodeError
|
||||
│ ├── UnicodeEncodeError
|
||||
│ └── UnicodeTranslateError
|
||||
└── Warning
|
||||
├── BytesWarning
|
||||
├── DeprecationWarning
|
||||
├── EncodingWarning
|
||||
├── FutureWarning
|
||||
├── ImportWarning
|
||||
├── PendingDeprecationWarning
|
||||
├── ResourceWarning
|
||||
├── RuntimeWarning
|
||||
├── SyntaxWarning
|
||||
├── UnicodeWarning
|
||||
└── UserWarning
|
Reference in New Issue
Block a user