Skip to content

Commit

Permalink
better errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Nov 15, 2023
1 parent 93f66f9 commit 4803ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions haxe/ui/backend/flixel/UIRTTITools.hx
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ class UIRTTITools {
bindEvent(rtti, component, f.name, target, m.params[1]);
}
} else {
throw "could not resolve bind param '" + m.params[0] + "'";
throw "bind param resolved, but was null '" + m.params[0] + "'";
}
} else {
throw "could not resolve bind param '" + m.params[0] + "'";
}
} else {
throw "could not resolve bind param '" + m.params[0] + "'";
throw "could not resolve class '" + className + "'";
}
}
}
Expand Down

0 comments on commit 4803ea4

Please sign in to comment.