ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
python.trfExceptions.TransformExecutionException Class Reference

Base class for execution exceptions. More...

Inheritance diagram for python.trfExceptions.TransformExecutionException:
Collaboration diagram for python.trfExceptions.TransformExecutionException:

Public Member Functions

def __str__ (self)
 
def errCode (self)
 
def errMsg (self)
 
def errMsg (self, value)
 Have a setter for errMsg as sometimes we want to update this with more information. More...
 

Private Attributes

 _errCode
 
 _errMsg
 

Detailed Description

Base class for execution exceptions.

Definition at line 63 of file trfExceptions.py.

Member Function Documentation

◆ __str__()

def python.trfExceptions.TransformException.__str__ (   self)
inherited

Definition at line 20 of file trfExceptions.py.

20  def __str__(self):
21  return "%s (Error code %d)" % (self._errMsg, self._errCode)
22 

◆ errCode()

def python.trfExceptions.TransformException.errCode (   self)
inherited

Definition at line 24 of file trfExceptions.py.

24  def errCode(self):
25  return self._errCode
26 

◆ errMsg() [1/2]

def python.trfExceptions.TransformException.errMsg (   self)
inherited

Definition at line 28 of file trfExceptions.py.

28  def errMsg(self):
29  return self._errMsg
30 

◆ errMsg() [2/2]

def python.trfExceptions.TransformException.errMsg (   self,
  value 
)
inherited

Have a setter for errMsg as sometimes we want to update this with more information.

Definition at line 34 of file trfExceptions.py.

34  def errMsg(self, value):
35  self._errMsg = value
36 
37 

Member Data Documentation

◆ _errCode

python.trfExceptions.TransformException._errCode
privateinherited

Definition at line 16 of file trfExceptions.py.

◆ _errMsg

python.trfExceptions.TransformException._errMsg
privateinherited

Definition at line 17 of file trfExceptions.py.


The documentation for this class was generated from the following file: