Source code for formaldict.exceptions

[docs]class Error(Exception): """The base error for all formaldict errors"""
[docs]class SchemaError(Error): """When an issue is found in the user-supplied schema"""
[docs]class ValidationError(Error): """When a schema validation error happens"""