Source code for precept.errors

[docs]class PreceptError(Exception): """Base exception thrown by precept"""
[docs]class ConfigError(PreceptError): """Error in the config system."""
[docs]class ImmutableError(PreceptError): """Immutable properties cannot change"""