mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-04 15:55:56 +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'
|