LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.pex.exceptions.wrappers.Exception Class Reference
Inheritance diagram for lsst.pex.exceptions.wrappers.Exception:
lsst.pex.exceptions.wrappers.ExceptionMeta lsst.pex.exceptions.wrappers.LogicError lsst.pex.exceptions.wrappers.NotFoundError lsst.pex.exceptions.wrappers.RuntimeError lsst.pex.exceptions.wrappers.DomainError lsst.pex.exceptions.wrappers.InvalidParameterError lsst.pex.exceptions.wrappers.LengthError lsst.pex.exceptions.wrappers.OutOfRangeError lsst.pex.exceptions.wrappers.TypeError lsst.pex.exceptions.wrappers.IoError lsst.pex.exceptions.wrappers.OverflowError lsst.pex.exceptions.wrappers.RangeError lsst.pex.exceptions.wrappers.UnderflowError

Public Member Functions

def __init__ (self, arg, *args, **kwds)
 
def __getattr__ (self, name)
 
def __repr__ (self)
 
def __str__ (self)
 

Public Attributes

 cpp
 

Static Public Attributes

 WrappedClass = exceptions.Exception
 

Detailed Description

The base class for Python-wrapped LSST C++ exceptions.

Definition at line 54 of file wrappers.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.pex.exceptions.wrappers.Exception.__init__ (   self,
  arg,
args,
**  kwds 
)

Definition at line 64 of file wrappers.py.

64  def __init__(self, arg, *args, **kwds):
65  if isinstance(arg, exceptions.Exception):
66  cpp = arg
67  message = cpp.what()
68  else:
69  message = arg
70  cpp = self.WrappedClass(message, *args, **kwds)
71  super(Exception, self).__init__(message)
72  self.cpp = cpp
73 

Member Function Documentation

◆ __getattr__()

def lsst.pex.exceptions.wrappers.Exception.__getattr__ (   self,
  name 
)

Reimplemented from lsst.pex.exceptions.wrappers.ExceptionMeta.

Definition at line 74 of file wrappers.py.

74  def __getattr__(self, name):
75  return getattr(self.cpp, name)
76 

◆ __repr__()

def lsst.pex.exceptions.wrappers.Exception.__repr__ (   self)

Definition at line 77 of file wrappers.py.

77  def __repr__(self):
78  return "%s('%s')" % (type(self).__name__, self.cpp.what())
79 

◆ __str__()

def lsst.pex.exceptions.wrappers.Exception.__str__ (   self)

Definition at line 80 of file wrappers.py.

80  def __str__(self):
81  return self.cpp.asString()
82 
83 
84 @register

Member Data Documentation

◆ cpp

lsst.pex.exceptions.wrappers.Exception.cpp

Definition at line 72 of file wrappers.py.

◆ WrappedClass

lsst.pex.exceptions.wrappers.Exception.WrappedClass = exceptions.Exception
static

Definition at line 62 of file wrappers.py.


The documentation for this class was generated from the following file:
type
table::Key< int > type
Definition: Detector.cc:163