debian-django-import-export/import_export/exceptions.py

12 lines
242 B
Python

from __future__ import unicode_literals
class ImportExportError(Exception):
"""A generic exception for all others to extend."""
pass
class FieldError(ImportExportError):
"""Raised when a field encounters an error."""
pass