10 lines
248 B
Python
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"""
|