pytest-csv-params/pytest_csv_params/exception.py

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
"""