Created
November 9, 2024 03:11
-
-
Save javierguerrero/1fa818bb1079de0adf2624993f36453d to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_3.cs
This file contains 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 | |
{ | |
// 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