Skip to content

Instantly share code, notes, and snippets.

@PanosJee
Created October 9, 2011 18:19
Show Gist options
  • Save PanosJee/1273980 to your computer and use it in GitHub Desktop.
Save PanosJee/1273980 to your computer and use it in GitHub Desktop.
Try/Catch WP7 with custom data
try {
    throw new InvalidOperationException("An exception occured while executing in a different thread.");
}
catch (Exception ex) {
    BugSenseHandler.HandleError(ex, string.Format("Happend at user {0}", _user));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment