@wennals/common
Version:
16 lines (15 loc) • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotFoundError = void 0;
const custom_error_1 = require("./custom-error");
class NotFoundError extends custom_error_1.CustomError {
constructor(message) {
super(message);
this.statusCode = 404;
Object.setPrototypeOf(this, NotFoundError.prototype);
}
serializeErrors() {
return [{ message: this.message }];
}
}
exports.NotFoundError = NotFoundError;