Sokoban/solver/pathNotFoundException.py
2021-03-23 15:38:37 +01:00

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