diff options
-rw-r--r-- | pykolab/xml/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pykolab/xml/__init__.py b/pykolab/xml/__init__.py index f73f5e9..db12a33 100644 --- a/pykolab/xml/__init__.py +++ b/pykolab/xml/__init__.py @@ -1,8 +1,12 @@ from attendee import Attendee +from attendee import InvalidAttendeeParticipantStatusError + from contact import Contact from contact_reference import ContactReference from event import Event +from event import EventIntegrityError +from event import InvalidEventDateError from event import event_from_ical from event import event_from_string @@ -14,3 +18,11 @@ __all__ = [ "event_from_ical", "event_from_string", ] + +errors = [ + "EventIntegrityError", + "InvalidEventDateError", + "InvalidAttendeeParticipantStatusError", + ] + +__all__.extend(errors) |