Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

fix: missing exception detail in bindings #1242

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/core/parser/parser_dynamic.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class DynamicClosureMap implements ClosureMap {
try {
return reflect(o).invoke(symbol, posArgs, sNamedArgs).reflectee;
} on NoSuchMethodError catch (e) {
throw 'Undefined function $name';
throw 'Undefined function or exception in $name $e';
}
}
};
Expand Down