Files
optima/api/src/Errors/BodyError.ts
T

9 lines
196 B
TypeScript

export default class BodyError extends Error {
constructor(message: string, cause?: string) {
super();
this.name = "BodyError";
this.message = message;
this.cause = cause;
}
}