@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
11 lines • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = void 0;
class ValidationError extends Error {
constructor(message = "The request's execution was not initiated due to invalid content", result = undefined) {
super(message);
this.result = result;
}
}
exports.ValidationError = ValidationError;
//# sourceMappingURL=validation-error.class.js.map