1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
.. _EXECPTION:
Overview
########
.. #contents:: Table of Contents
:depth: 2
.. _EXECPTION/Base:
Exception Base Classes
######################
The :mod:`pyTooling.Exceptions` package provides extensible exceptions.
ExceptionBase
*************
The :exc:`ExceptionBase` is the base-class for all exceptions in ``pyTooling`` as well
as derived packages and frameworks.
.. _EXECPTION/Predefined:
Predefined Exceptions
#####################
Predefined exceptions of ``pyTooling.Exceptions``.
.. rubric:: Inheritance diagram:
.. inheritance-diagram:: pyTooling.Exceptions
:parts: 1
EnvironmentException
********************
.. todo:: EXCEPTION:: Needs documentation for EnvironmentException
PlatformNotSupportedException
*****************************
.. todo:: EXCEPTION:: Needs documentation for PlatformNotSupportedException
NotConfiguredException
**********************
.. todo:: EXCEPTION:: Needs documentation for NotConfiguredException
.. seealso::
Base excepetion class :exc:`ExceptionBase`
Base class for all exceptions.
|