import { RuntimeException } from'./runtime.exception.js';
exportclassUnknownElementExceptionextendsRuntimeException {
constructor(name) {
name = name && name.toString();
super(`Nest could not find ${name || 'given'} element (this provider does not exist in the current context)`);
}
}