ifc-expressions
Version:
Parsing and evaluation of IFC expressions
10 lines (9 loc) • 362 B
JavaScript
import { ValidationException } from "./ValidationException.js";
export class NoSuchMemberException extends ValidationException {
constructor(memberName, type, ctx) {
super(`No member ${memberName} found for type ${type}`, ctx);
this.memberName = memberName;
this.type = type;
}
}
//# sourceMappingURL=NoSuchMemberException.js.map