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