Improve error message for unknown properties

This commit is contained in:
Grahame Grieve 2023-08-14 15:33:48 +10:00
parent 9cde582732
commit b45f6caf60
1 changed files with 1 additions and 1 deletions

View File

@ -1344,7 +1344,7 @@ public class Element extends Base {
}
}
throw new Error("Unrecognised name "+name+" on "+this.name);
throw new Error("Unrecognised property '"+name+"' on "+this.name);
}
@Override