Files
nest/packages/core/errors/exceptions/invalid-module.exception.ts

9 lines
307 B
TypeScript

import { INVALID_MODULE_MESSAGE } from '../messages';
import { RuntimeException } from './runtime.exception';
export class InvalidModuleException extends RuntimeException {
constructor(parentModule: any, index: number, scope: any[]) {
super(INVALID_MODULE_MESSAGE(parentModule, index, scope));
}
}