EmbASP-Python
pddl_exception.py
1 class PDDLException(Exception):
2  """Represents a PDDL Exception."""
3 
4  def __init__(self, arg):
5  super(PDDLException, self).__init__(arg)
languages.pddl.pddl_exception.PDDLException
Definition: pddl_exception.py:1