UNPKG

@nestjs/core

Version:

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

8 lines (7 loc) 259 B
import { INVALID_CLASS_MESSAGE } from '../messages.js'; import { RuntimeException } from './runtime.exception.js'; export class InvalidClassException extends RuntimeException { constructor(value) { super(INVALID_CLASS_MESSAGE `${value}`); } }