mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
46 lines
1.1 KiB
Python
46 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
vdirsyncer.exceptions
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Contains exception classes used by vdirsyncer. Not all exceptions are here,
|
|
only the most commonly used ones.
|
|
|
|
:copyright: (c) 2014 Markus Unterwaditzer & contributors
|
|
:license: MIT, see LICENSE for more details.
|
|
'''
|
|
|
|
|
|
class Error(Exception):
|
|
'''Baseclass for all errors.'''
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
for key, value in kwargs.items():
|
|
if getattr(self, key, object()) is not None:
|
|
raise TypeError('Invalid argument: {}'.format(key))
|
|
setattr(self, key, value)
|
|
|
|
super(Error, self).__init__(*args)
|
|
|
|
|
|
class PreconditionFailed(Error):
|
|
'''
|
|
- The item doesn't exist although it should
|
|
- The item exists although it shouldn't
|
|
- The etags don't match.
|
|
|
|
Due to CalDAV we can't actually say which error it is.
|
|
This error may indicate race conditions.
|
|
'''
|
|
|
|
|
|
class NotFoundError(PreconditionFailed):
|
|
'''Item not found'''
|
|
|
|
|
|
class AlreadyExistingError(PreconditionFailed):
|
|
'''Item already exists'''
|
|
|
|
|
|
class WrongEtagError(PreconditionFailed):
|
|
'''Wrong etag'''
|