mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
import { RuntimeException } from './runtime.exception';
|
|
import { INVALID_MIDDLEWARE_CONFIGURATION } from '../messages';
|
|
|
|
export class InvalidMiddlewareConfigurationException extends RuntimeException {
|
|
constructor() {
|
|
super(INVALID_MIDDLEWARE_CONFIGURATION);
|
|
}
|
|
}
|