Source code for parsemon.error

"""This module contains parser specific exceptions"""


[docs]class ParsingFailed(Exception): """Base exception class for all possible ways a parser can fail""" pass
[docs]class FileTooLarge(Exception): """The file to be parsed is larger then the specified limit."""