Files
nest/packages/core/errors/exceptions/unknown-element.exception.ts
2019-07-31 11:37:22 +02:00

10 lines
261 B
TypeScript

import { RuntimeException } from './runtime.exception';
export class UnknownElementException extends RuntimeException {
constructor() {
super(
'Nest could not find the given element (this class does not exist in the current context)',
);
}
}