UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

17 lines 471 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NotFoundError = void 0; const custom_1 = require("./custom"); class NotFoundError extends custom_1.CustomError { constructor({ message, reason, metadata, error }) { super({ message, code: 404, reason, metadata, error, }); } } exports.NotFoundError = NotFoundError; //# sourceMappingURL=not-found.js.map