UNPKG

@nestjs/core

Version:

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

8 lines (7 loc) 276 B
import { UNDEFINED_FORWARDREF_MESSAGE } from '../messages.js'; import { RuntimeException } from './runtime.exception.js'; export class UndefinedForwardRefException extends RuntimeException { constructor(scope) { super(UNDEFINED_FORWARDREF_MESSAGE(scope)); } }