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