Skip to content

Instantly share code, notes, and snippets.

@PanosJee
Created August 31, 2012 11:58
Show Gist options
  • Save PanosJee/3551885 to your computer and use it in GitHub Desktop.
Save PanosJee/3551885 to your computer and use it in GitHub Desktop.
Tracking handled exceptions with Bugsense Android
try{
String a = null;
a.toString();
}catch(Exception ex) {
ex.printStackTrace(); // in case you want to see the stacktrace in your log cat output
BugSenseHandler.sendException(ex);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment