mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-14 05:37:47 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
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'
|