22 lines
293 B
Python
22 lines
293 B
Python
|
"""
|
||
|
Exceptions
|
||
|
"""
|
||
|
|
||
|
|
||
|
class CsvParamsDataFileNotFound(FileNotFoundError):
|
||
|
"""
|
||
|
File Not Found
|
||
|
"""
|
||
|
|
||
|
|
||
|
class CsvParamsDataFileInaccessible(IOError):
|
||
|
"""
|
||
|
Cannot Access the File
|
||
|
"""
|
||
|
|
||
|
|
||
|
class CsvParamsDataFileInvalid(ValueError):
|
||
|
"""
|
||
|
CSV Data is somehow invalid
|
||
|
"""
|