Package SatStress :: Module SatStress :: Class InvalidSatelliteParamError
[frames] | no frames]

Class InvalidSatelliteParamError

source code

              object --+                
                       |                
exceptions.BaseException --+            
                           |            
        exceptions.Exception --+        
                               |        
                           Error --+    
                                   |    
                 SatelliteParamError --+
                                       |
                                      InvalidSatelliteParamError
Known Subclasses:

Raised when a required parameter is not found in the input file.

Instance Methods
 
__init__(self, sat)
Default initialization of an InvalidSatelliteParamError
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__

Properties

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details

__init__(self, sat)
(Constructor)

source code 

Default initialization of an InvalidSatelliteParamError

Simply sets self.sat = sat (a Satellite object). Most errors can be well described using only the parameters stored in the Satellite object.

Overrides: object.__init__