mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
32 lines
442 B
Python
32 lines
442 B
Python
|
"""
|
||
|
Exception classes
|
||
|
"""
|
||
|
|
||
|
|
||
|
class Error(Exception):
|
||
|
"""
|
||
|
Pysrt's base exception
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InvalidTimeString(Error):
|
||
|
"""
|
||
|
Raised when parser fail on bad formated time strings
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InvalidItem(Error):
|
||
|
"""
|
||
|
Raised when parser fail to parse a sub title item
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InvalidIndex(InvalidItem):
|
||
|
"""
|
||
|
Raised when parser fail to parse a sub title index
|
||
|
"""
|
||
|
pass
|