Files
mayan-edms/mayan/apps/file_metadata/exceptions.py
Roberto Rosario dcea32ae38 Refactor file metadata app
Add translatable label to the label admin method.

Add access association from DocumentVersionDriverEntry to
document version.

Enclose process method and event commit in a transaction.

Update process method to not error out if EXIF tool
is not found.

Update views and tests to use ExternalObjectMixin and
comply with MERCs 5 and 6.

Signed-off-by: Roberto Rosario <Roberto.Rosario.Gonzalez@gmail.com>
2019-02-03 19:22:49 -04:00

10 lines
248 B
Python

from __future__ import unicode_literals
class FileMetadataError(Exception):
"""Base file metadata driver exception"""
class FileMetadataDriverError(FileMetadataError):
"""Exception raised when a driver encounters an unexpected error"""