Source code for dogwood.errors

[docs] class DogwoodError(Exception): """Base error for Dogwood SDK failures."""
[docs] class ParseError(DogwoodError): """Policy or trace input could not be parsed."""
[docs] class ValidationError(DogwoodError): """Policy validation failed."""
[docs] class UnsupportedFeatureError(DogwoodError): """The Python interpreter does not yet implement this Dogwood feature."""