Package mobi :: Package mtld :: Package da :: Package exception :: Module device_atlas_exception :: Class DeviceAtlasException
[hide private]
[frames] | no frames]

Class DeviceAtlasException

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              DeviceAtlasException
Known Subclasses:

Superclass representing the base of the exception hierarchy. It makes our exceptions compatible with Python 3.

Instance Methods [hide private]
 
__init__(self, message)
Constructor to provide the "message" attribute in Python 3.
 
__str__(self)
str(x)

Inherited from exceptions.Exception: __new__

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

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Class Variables [hide private]
  message = ''
Properties [hide private]

Inherited from exceptions.BaseException: args

Inherited from object: __class__

Method Details [hide private]

__init__(self, message)
(Constructor)

 

Constructor to provide the "message" attribute in Python 3.

Overrides: object.__init__

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)