Documentation for ToMeDa
tomeda.file_exception
FileHandler Exceptions for Tomeda.
TomedaFileCreateError
TomedaFileCreateError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if creating file fails.
Source code in tomeda/file_exception.py
62 63 |
|
TomedaFileDeleteError
TomedaFileDeleteError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if deleting file fails.
Source code in tomeda/file_exception.py
69 70 |
|
TomedaFileDirectoryCreateError
TomedaFileDirectoryCreateError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if creating directory fails.
Source code in tomeda/file_exception.py
83 84 |
|
TomedaFileEncodingError
TomedaFileEncodingError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if encoding file fails.
Source code in tomeda/file_exception.py
76 77 |
|
TomedaFileError
TomedaFileError(path: Path, *args: object)
Bases: TomedaException
Base exception for TomedaFileHandler.
Source code in tomeda/file_exception.py
12 13 14 |
|
path
instance-attribute
path = path
TomedaFileExistsError
TomedaFileExistsError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if file exists.
Source code in tomeda/file_exception.py
55 56 |
|
TomedaFileIOError
TomedaFileIOError(path: Path, *args: object)
Bases: TomedaFileError
Exception for FileHandler if file or directory IO fails.
Source code in tomeda/file_exception.py
27 28 |
|
TomedaFileNotReadableError
TomedaFileNotReadableError(path: Path, *args: object)
Bases: TomedaFileIOError
Exception for TomedaFileHandler if file is not readable.
Source code in tomeda/file_exception.py
34 35 |
|
TomedaFileNotWritableError
TomedaFileNotWritableError(path: Path, *args: object)
Bases: TomedaFileIOError
Exception for TomedaFileHandler if file is not writable.
Source code in tomeda/file_exception.py
41 42 |
|
TomedaFilePermissionError
TomedaFilePermissionError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if file or directory permission fails.
Source code in tomeda/file_exception.py
48 49 |
|
TomedaFileValueError
TomedaFileValueError(path: Path, *args: object)
Bases: TomedaFileError
Exception for TomedaFileHandler if value is not valid.
Source code in tomeda/file_exception.py
20 21 |
|