@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.
7 lines • 323 B
TypeScript
import { CustomError, type CustomErrorsArgs } from './custom';
export interface InternalServerErrorArgs extends CustomErrorsArgs {
}
export declare class InternalServerError extends CustomError {
constructor({ message, reason, metadata, error }: InternalServerErrorArgs);
}
//# sourceMappingURL=internal-server.d.ts.map