service/src/piracyshield_service/importer/errors.py
2024-01-19 15:32:27 +01:00

13 lines
239 B
Python

class ImporterErrorCode:
GENERIC = '9000'
EXTENSION_NOT_SUPPORTED = '9001'
class ImporterErrorMessage:
GENERIC = 'Error during the saving of the file.'
EXTENSION_NOT_SUPPORTED = 'The file extension is not supported.'