mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-14 05:37:47 +01:00
10 lines
202 B
Python
10 lines
202 B
Python
|
from izihawa_utils.exceptions import BaseError
|
||
|
|
||
|
|
||
|
class UnknownFileFormatError(BaseError):
|
||
|
code = 'unknown_file_format_error'
|
||
|
|
||
|
|
||
|
class UnknownSchemaError(BaseError):
|
||
|
code = 'unknown_schema_error'
|