File: exceptions.py

package info (click to toggle)
django-recurrence 1.14-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,152 kB
  • sloc: python: 2,530; javascript: 2,502; makefile: 159; sh: 6
file content (13 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
from django.core.exceptions import ValidationError


class RecurrenceError(ValidationError):
    pass


class SerializationError(RecurrenceError):
    pass


class DeserializationError(RecurrenceError):
    pass