mirror of
https://github.com/mindverse/Second-Me.git
synced 2026-07-22 15:43:26 +00:00
28 lines
445 B
Python
28 lines
445 B
Python
class FileProcessingError(Exception):
|
|
"""Base class for file processing errors"""
|
|
|
|
pass
|
|
|
|
|
|
class UnsupportedFileType(FileProcessingError):
|
|
"""Unsupported file type"""
|
|
|
|
pass
|
|
|
|
|
|
class FileReadError(FileProcessingError):
|
|
"""File reading error"""
|
|
|
|
pass
|
|
|
|
|
|
class FileWriteError(FileProcessingError):
|
|
"""File writing error"""
|
|
|
|
pass
|
|
|
|
|
|
class ProcessingError(FileProcessingError):
|
|
"""Error during processing"""
|
|
|
|
pass
|