9 lines
218 B
Python
9 lines
218 B
Python
|
class Path_not_found_exception(Exception):
|
||
|
"""
|
||
|
Attributes:
|
||
|
message -- explanation of why the specific transition is not allowed
|
||
|
"""
|
||
|
|
||
|
def __init__(self, *message):
|
||
|
self.message = message
|