Files
nest/packages/core/errors/exceptions/unknown-element.exception.ts
2019-08-12 12:29:53 +10:00

10 lines
268 B
TypeScript

import { RuntimeException } from './runtime.exception';
export class UnknownElementException extends RuntimeException {
constructor(name?: string) {
super(
`Nest cannot find ${name || 'given'} element (it does not exist in current context)`,
);
}
}