Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 16:14
Embed
What would you like to do?
try
{
FunctionThatMightThrow();
}
catch (Exception error)
{
NotifyUserOfError(error);
// Another option
ReportErrorToService(error);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment