mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
10 lines
261 B
TypeScript
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)',
|
|
);
|
|
}
|
|
}
|