-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexceptions.py
More file actions
33 lines (21 loc) · 775 Bytes
/
Copy pathexceptions.py
File metadata and controls
33 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class InvalidDataSetException(Exception):
def __init__(self, message):
super().__init__(message)
class InvalidPathException(Exception):
def __init__(self, message):
super().__init__(message)
class InvalidDirectoryPathException(Exception):
def __init__(self, message):
super().__init__(message)
class InvalidColumnsException(Exception):
def __init__(self, message):
super().__init__(message)
class NegativeNumberException(Exception):
def __init__(self, message):
super().__init__(message)
class InvalidCellLineException(Exception):
def __init__(self, message):
super().__init__(message)
class InvalidUIDException(Exception):
def __init__(self, message):
super().__init__(message)