mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 08:22:53 +01:00
14 lines
273 B
Python
14 lines
273 B
Python
|
from izihawa_utils.exceptions import BaseError
|
||
|
|
||
|
|
||
|
class FileTooBigError(BaseError):
|
||
|
code = 'file_too_big_error'
|
||
|
|
||
|
|
||
|
class UnavailableMetadataError(BaseError):
|
||
|
code = 'unavailable_metadata_error'
|
||
|
|
||
|
|
||
|
class UnparsableDoiError(BaseError):
|
||
|
code = 'unparsable_doi_error'
|