AccessEngine :: AccessEngineAPI :: AEApiError :: AEApiError :: Class AEApiError
[hide private]
[frames] | no frames]

Class AEApiError

source code

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              AEApiError

Base class for all AccessEngineAPI 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: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__

Inherited from object: __hash__, __reduce_ex__

Class Variables [hide private]
string description = None
Localized error description to be reported to the user whenthe Trap flag in AETierManager.SUEState is True.
Properties [hide private]

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

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__