@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
14 lines (12 loc) • 341 B
JavaScript
class AggregatedValidationError extends Error {
zod;
details;
constructor(message, zod, details) {
super(message);
this.name = 'AggregatedValidationError';
this.zod = zod;
this.details = details;
}
}
export { AggregatedValidationError };
//# sourceMappingURL=AggregatedValidationError.js.map