mirror of
https://github.com/nestjs/nest.git
synced 2026-02-24 08:12:52 +00:00
9 lines
307 B
TypeScript
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));
|
|
}
|
|
}
|