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.NoSuchMethodException = void 0; const ValidationException_js_1 = require("./ValidationException.js"); class NoSuchMethodException extends ValidationException_js_1.ValidationException { constructor(methodName, type, ctx) { super(`No method ${methodName} found for type ${type}`, ctx); this.methodName = methodName; this.type = type; } } exports.NoSuchMethodException = NoSuchMethodException; //# sourceMappingURL=NoSuchMethodException.js.map