UNPKG

@nestjs/core

Version:

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

8 lines (7 loc) 272 B
import { INVALID_MIDDLEWARE_MESSAGE } from '../messages.js'; import { RuntimeException } from './runtime.exception.js'; export class InvalidMiddlewareException extends RuntimeException { constructor(name) { super(INVALID_MIDDLEWARE_MESSAGE `${name}`); } }