9 lines
197 B
Python
9 lines
197 B
Python
|
class CSVException(Exception):
|
||
|
"""Main csv exception"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InvalidNameOrTypeHeaderException(CSVException):
|
||
|
"""Throw if csv file has invalid name or type of header"""
|
||
|
pass
|