Created
October 9, 2011 18:19
-
-
Save PanosJee/1273980 to your computer and use it in GitHub Desktop.
Try/Catch WP7 with custom data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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