Second-Me/lpm_kernel/file_data/core/exceptions.py
2025-03-20 00:37:54 +08:00

16 lines
264 B
Python

class FileProcessError(Exception):
"""File processing base exception"""
pass
class UnsupportedFileType(FileProcessError):
"""Unsupported file type"""
pass
class FileProcessingError(FileProcessError):
"""File processing error"""
pass