mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-18 17:29:26 +01:00
43a4d0e17f
GitOrigin-RevId: dd347635b52b69451a50cca3163fbfbcefb8561e
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'
|