Source code for fileseq.exceptions

"""
exceptions - Exception subclasses relevant to fileseq operations.
"""


[docs] class FileSeqException(ValueError): """ Thrown for general exceptions handled by FileSeq. """ pass
[docs] class MaxSizeException(ValueError): """ Thrown when a range exceeds allowable size. """ pass
[docs] class ParseException(FileSeqException): """ Thrown after a frame range or file sequence parse error. """ pass