Sokoban/solver/pathNotFoundException.py

9 lines
218 B
Python
Raw Permalink Normal View History

2021-03-23 15:38:37 +01:00
class Path_not_found_exception(Exception):
"""
Attributes:
message -- explanation of why the specific transition is not allowed
"""
def __init__(self, *message):
self.message = message