Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/1fa818bb1079de0adf2624993f36453d to your computer and use it in GitHub Desktop.
Save javierguerrero/1fa818bb1079de0adf2624993f36453d to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_3.cs
try
{
// Código que puede lanzar una excepción
}
catch (Exception ex)
{
Log.Error(ex, "Error inesperado en la operación");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment