Task :: Tools :: Error :: ToolsError :: Class ToolsError
[hide private]
[frames] | no frames]

Class ToolsError

source code

exceptions.Exception --+
                       |
                      ToolsError

Base class for all Task.Tools exceptions. This base class should not be instantiated directly as it does not define its own error string. It only exists as a catch-all for its subclass exceptions.

Instance Methods [hide private]
 
__init__(self)
Stores a blank description and None error code using the parent Python Exception constructor.
source code

Inherited from exceptions.Exception: __getitem__, __str__

Class Variables [hide private]
string description = None
Localized error description to be reported to the user whenthe Trap flag in TierManager.LSRState is True.
Method Details [hide private]

__init__(self)
(Constructor)

source code 

Stores a blank description and None error code using the parent Python Exception constructor.

Overrides: exceptions.Exception.__init__