-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
53 lines (35 loc) · 1.42 KB
/
exceptions.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Exception raised when the grammar is not SLR, used in bottom-up parser
class NotLR0Exception(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when the grammar is not LL(1), used in top-down parser
class NotLL1Exception(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when the grammar hasn't been created
class GrammarNotCreatedException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when the grammar hasn't a start symbol
class StartSymbolNotFoundException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when a symbol is not in the grammar
class SymbolNotFoundException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when a production is not valid
class InvalidProductionException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)
# Exception raised when a non-terminal is not valid
class InvalidNonTerminalException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)