mirror of
https://github.com/mindverse/Second-Me.git
synced 2026-08-27 01:21:45 +00:00
16 lines
264 B
Python
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
|