Files
nest/packages/core/errors/exceptions/invalid-middleware-configuration.exception.ts
2018-03-24 15:11:48 +01:00

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);
}
}