UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

15 lines (14 loc) 699 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FunctionArgumentException = void 0; const ValidationException_js_1 = require("./ValidationException.js"); class FunctionArgumentException extends ValidationException_js_1.ValidationException { constructor(message, functionName, argumentName, index, ctx) { super(`${message} - argument ${argumentName} of function ${functionName} (at 0-based index ${index})`, ctx); this.functionName = functionName; this.argumentName = argumentName; this.index = index; } } exports.FunctionArgumentException = FunctionArgumentException; //# sourceMappingURL=FunctionArgumentException.js.map