mirror of
https://git.webmeisterei.com/webmeisterei/todoist-taskwarrior.git
synced 2025-07-12 06:02:31 +02:00
17 lines
312 B
Python
17 lines
312 B
Python
""" Custom Errors """
|
|
|
|
|
|
class UnsupportedRecurrence(Exception):
|
|
|
|
def __init__(self, date_string):
|
|
super().__init__('Unsupported recurrence: %s' % date_string)
|
|
self.date_string = date_string
|
|
|
|
|
|
class TIItemNotFoundAfterCommit(Exception):
|
|
pass
|
|
|
|
|
|
class TIProjectNotFound(Exception):
|
|
pass
|