mirror of
https://git.webmeisterei.com/webmeisterei/todoist-taskwarrior.git
synced 2023-12-21 10:23:00 +01:00
10 lines
211 B
Python
10 lines
211 B
Python
|
""" Custom Errors """
|
||
|
|
||
|
|
||
|
class UnsupportedRecurrence(Exception):
|
||
|
|
||
|
def __init__(self, date_string):
|
||
|
super().__init__('Unsupported recurrence: %s' % date_string)
|
||
|
self.date_string = date_string
|
||
|
|