Package mobi :: Package mtld :: Package da :: Package exception :: Module device_atlas_exception :: Class DeviceAtlasException
[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.


Copyright: Copyright (c) Afilias Technologies Limited 2021. All Rights Reserved.

Author: Afilias Technologies Limited

Instance Methods
 
__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
  message = ''
Properties

Inherited from exceptions.BaseException: args

Inherited from object: __class__

Method Details

__init__(self, message)
(Constructor)

 

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

Parameters:
  • message
Overrides: object.__init__

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)