Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/188d0aa945e4973739b30c260dd19953 to your computer and use it in GitHub Desktop.
Save javierguerrero/188d0aa945e4973739b30c260dd19953 to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter5_8.cs
try
{
// Código que puede lanzar excepciones
}
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