exception documentation

class ReadError(ValueError): (source)

Constructor: ReadError(expected, position)

View In Hierarchy

Exception raised by read_* functions when they fail. :param position: The index in the input string where an error occurred. :param expected: What was expected when an error occurred.

Method __init__ Undocumented
Method __str__ Undocumented
Instance Variable expected Undocumented
Instance Variable position Undocumented
def __init__(self, expected, position): (source)

Undocumented

def __str__(self): (source)

Undocumented

expected = (source)

Undocumented

position = (source)

Undocumented