#! /usr/bin/env python
"""
exceptions - Exception subclasses relevant to fileseq operations.
"""
[docs]class FileSeqException(ValueError):
"""
Thrown for general exceptions handled by FileSeq.
"""
pass
[docs]class ParseException(FileSeqException):
"""
Thrown after a frame range or file sequence parse error.
"""
pass