LSSTApplications  19.0.0-14-gb0260a2+2d714fc2ef,20.0.0+34a42eae2c,20.0.0+76f397ef0c,20.0.0+8558dd3f48,20.0.0+a6b6977b51,20.0.0+b2ea66fa67,20.0.0+cc669a8b45,20.0.0+d561663fb5,20.0.0+d778e99126,20.0.0+efe67588cf,20.0.0+f45b7d88f4,20.0.0+f7c597f720,20.0.0+fb43bee9b9,20.0.0+fb4d547e0d,20.0.0-1-g10df615+d8b88ec1b5,20.0.0-1-g253301a+a6b6977b51,20.0.0-1-g498fb60+ff88705a28,20.0.0-1-g4d801e7+ce0d01dabd,20.0.0-1-g5b95a8c+24eaf908b3,20.0.0-1-g8a53f90+2817c06967,20.0.0-1-gc96f8cb+fb4d547e0d,20.0.0-1-gd1c87d7+2817c06967,20.0.0-1-gdb27ee5+abab67204f,20.0.0-13-ge998c5c+9f8c516ffa,20.0.0-18-g08fba245+88079d2923,20.0.0-2-gec03fae+fb98bf9d97,20.0.0-3-gdd5c15c+a61313b210,20.0.0-34-gdb4d86a+b43b2c05ff,20.0.0-4-g4a2362f+f45b7d88f4,20.0.0-4-gfea843c+f45b7d88f4,20.0.0-5-gac0d578b1+a8c4e2ada3,20.0.0-5-gfcebe35+cfceff6a24,20.0.0-6-g01203fff+e332440eaf,20.0.0-8-gea2affd+48c001ce3c,20.0.0-9-gabd0d4c+abab67204f,20.0.0-9-gf3ab18e+fb4d547e0d,w.2020.33
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | List of all members
pex.config.config.FieldValidationError Class Reference
Inheritance diagram for pex.config.config.FieldValidationError:

Public Member Functions

def __init__ (self, field, config, msg)
 

Public Attributes

 fieldType
 
 fieldName
 
 fullname
 
 history
 
 fieldSource
 
 configSource
 

Detailed Description

Raised when a ``~lsst.pex.config.Field`` is not valid in a
particular ``~lsst.pex.config.Config``.

Parameters
----------
field : `lsst.pex.config.Field`
    The field that was not valid.
config : `lsst.pex.config.Config`
    The config containing the invalid field.
msg : `str`
    Text describing why the field was not valid.

Definition at line 144 of file config.py.

Constructor & Destructor Documentation

◆ __init__()

def pex.config.config.FieldValidationError.__init__ (   self,
  field,
  config,
  msg 
)

Definition at line 158 of file config.py.

158  def __init__(self, field, config, msg):
159  self.fieldType = type(field)
160  """Type of the `~lsst.pex.config.Field` that incurred the error.
161  """
162 
163  self.fieldName = field.name
164  """Name of the `~lsst.pex.config.Field` instance that incurred the
165  error (`str`).
166 
167  See also
168  --------
169  lsst.pex.config.Field.name
170  """
171 
172  self.fullname = _joinNamePath(config._name, field.name)
173  """Fully-qualified name of the `~lsst.pex.config.Field` instance
174  (`str`).
175  """
176 
177  self.history = config.history.setdefault(field.name, [])
178  """Full history of all changes to the `~lsst.pex.config.Field`
179  instance.
180  """
181 
182  self.fieldSource = field.source
183  """File and line number of the `~lsst.pex.config.Field` definition.
184  """
185 
186  self.configSource = config._source
187  error = "%s '%s' failed validation: %s\n"\
188  "For more information see the Field definition at:\n%s"\
189  " and the Config definition at:\n%s" % \
190  (self.fieldType.__name__, self.fullname, msg,
191  self.fieldSource.format(), self.configSource.format())
192  super().__init__(error)
193 
194 

Member Data Documentation

◆ configSource

pex.config.config.FieldValidationError.configSource

Definition at line 186 of file config.py.

◆ fieldName

pex.config.config.FieldValidationError.fieldName

Definition at line 163 of file config.py.

◆ fieldSource

pex.config.config.FieldValidationError.fieldSource

Definition at line 182 of file config.py.

◆ fieldType

pex.config.config.FieldValidationError.fieldType

Definition at line 159 of file config.py.

◆ fullname

pex.config.config.FieldValidationError.fullname

Definition at line 172 of file config.py.

◆ history

pex.config.config.FieldValidationError.history

Definition at line 177 of file config.py.


The documentation for this class was generated from the following file:
pex.config.history.format
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
type
table::Key< int > type
Definition: Detector.cc:163