1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
"""
Core Workalendar Exceptions
"""
class CalendarError(Exception):
"""
Base Calendar Error
"""
class UnsupportedDateType(CalendarError):
"""
Raised when trying to use an unsupported date/datetime type.
"""
class ISORegistryError(CalendarError):
"""
Raised when you are trying to register a non-Calendar object
"""
class ICalExportError(CalendarError):
"""
Raised when the iCal export is impossible
"""
class ICalExportRangeError(ICalExportError):
"""
Raised when the iCal export is impossible due to wrong range
"""
class ICalExportTargetPathError(ICalExportError):
"""
Raised when the iCal export is impossible due to unusable target path
"""
|