for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Module containing exception classes."""
class PPPDatamodelException(Exception):
"""Base class for PPP exceptions."""
pass
class AttributeNotProvided(PPPDatamodelException):
"""Exception raised when a mandatory attribute is not given to
a node constructor."""
class UnknownNodeType(PPPDatamodelException):
"""Exception raised when a node type has no constructor/class."""