UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

11 lines (10 loc) 491 B
import { ValidationException } from "./ValidationException.js"; export class FunctionArgumentException extends 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; } } //# sourceMappingURL=FunctionArgumentException.js.map