UNPKG

@nestjs/core

Version:

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

8 lines (7 loc) 330 B
import { INVALID_MODULE_MESSAGE } from '../messages.js'; import { RuntimeException } from './runtime.exception.js'; export class InvalidModuleException extends RuntimeException { constructor(parentModule, index, scope, receivedValue) { super(INVALID_MODULE_MESSAGE(parentModule, index, scope, receivedValue)); } }