Source code for plaza_routing.integration.util.exception_util
[docs]class ValidationError(ValueError):
"""
Exception for validation errors.
The provided exception msg will be exposed to the user.
"""
pass
[docs]class ServiceError(Exception):
"""
Exception for service failures in the integration layer.
"""
pass