UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

14 lines (13 loc) 558 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NoSuchMemberException = void 0; const ValidationException_js_1 = require("./ValidationException.js"); class NoSuchMemberException extends ValidationException_js_1.ValidationException { constructor(memberName, type, ctx) { super(`No member ${memberName} found for type ${type}`, ctx); this.memberName = memberName; this.type = type; } } exports.NoSuchMemberException = NoSuchMemberException; //# sourceMappingURL=NoSuchMemberException.js.map