""" open/dulcinea/lib/property/errors.py """ class PropertyError (Exception): """Base class for all property-related exceptions.""" class PropertyTypeError (PropertyError): """Raised on violation of the property type system""" class ConstraintError (PropertyError): """ Raised when attempting to set a property value in violation of the property's constraint. """