UNPKG

trapx

Version:

A plug-and-play middleware for standardized error handling in TypeScript-based Express.js applications

6 lines (5 loc) 211 B
import { BaseError } from './BaseError'; import { ErrorMetadata } from '../types/ErrorTypes'; export declare class NotFoundError extends BaseError { constructor(message: string, metadata?: ErrorMetadata); }