UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

8 lines (7 loc) 274 B
import { RuntimeException } from './runtime.exception.js'; import { UNKNOWN_REQUEST_MAPPING } from '../messages.js'; export class UnknownRequestMappingException extends RuntimeException { constructor(metatype) { super(UNKNOWN_REQUEST_MAPPING(metatype)); } }