mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { RuntimeException } from './runtime.exception';
|
|
|
|
export class UnknownModuleException extends RuntimeException {
|
|
constructor() {
|
|
super(
|
|
'Nest could not select the given module (it does not exist in current context)',
|
|
);
|
|
}
|
|
}
|