Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/e4b9c65544ca545bca4a0c4c7c1aeb0b to your computer and use it in GitHub Desktop.
Save javierguerrero/e4b9c65544ca545bca4a0c4c7c1aeb0b to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_1.cs
try
{
// Código que lanza una excepción
}
catch (Exception ex)
{
Console.WriteLine("Mensaje de error: " + ex.Message);
Console.WriteLine("Traza de pila: " + ex.StackTrace);
if (ex.InnerException != null)
{
Console.WriteLine("Excepción interna: " + ex.InnerException.Message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment