exportclassInterfaceResolveTypeErrorextendsError {
constructor(interfaceMetadata) {
super(`Cannot resolve type for interface ${interfaceMetadata.name}! ` +
`You need to return instance of object type class, not a plain object!`);
Object.setPrototypeOf(this, new.target.prototype);
}
}