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