Files
nest/packages/core/errors/exceptions/unknown-module.exception.ts
2019-08-26 13:25:32 +02:00

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)',
);
}
}