ndio.ramon.errors module
lass InvalidRAMONError(Exception): """ Raised when an invalid RAMON object is referenced or created. """ def __init__(self, msg): self.msg = msg def __str__(self): return self.msg
Classes
class InvalidRAMONError
Raised when an invalid RAMON object is referenced or created.
class InvalidRAMONError(Exception): """ Raised when an invalid RAMON object is referenced or created. """ def __init__(self, msg): self.msg = msg def __str__(self): return self.msg
Ancestors (in MRO)
- InvalidRAMONError
- builtins.Exception
- builtins.BaseException
- builtins.object
Class variables
var args
Static methods
def __init__(
self, msg)
Initialize self. See help(type(self)) for accurate signature.
def __init__(self, msg): self.msg = msg
Instance variables
var msg