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.

13 lines 338 B
import { CustomError } from './custom.js'; export class InternalServerError extends CustomError { constructor({ message, reason, metadata, error }) { super({ message, code: 500, reason, metadata, error, }); } } //# sourceMappingURL=internal-server.js.map