Package pyx12 :: Module error_item :: Class ErrorItem
[hide private]

Class ErrorItem

source code

object --+
         |
        ErrorItem
Known Subclasses:

Wrap an X12 validation error

Instance Methods [hide private]
 
__init__(self, err_type, err_cde, err_str)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
getErrCde(self) source code
 
getErrStr(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, err_type, err_cde, err_str)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Parameters:
  • err_type (string) - At what level did the error occur
  • err_cde (string) - Segment level error code
  • err_str (string) - Description of the error
Overrides: object.__init__