Files
optima/src/Errors/MissingBodyValue.ts
T
2026-01-24 16:59:50 -06:00

10 lines
305 B
TypeScript

export default class MissingBodyValue extends Error {
constructor(valueName: string) {
super();
this.name = "MissingBodyValue";
this.message = `Value '${valueName}' is missing from the body.`;
this.cause =
"A value that was required by the body of this request is missing.";
}
}