Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/a9cedb9524e6a8601199f025efa508e0 to your computer and use it in GitHub Desktop.
Save javierguerrero/a9cedb9524e6a8601199f025efa508e0 to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_4.cs
public async Task ObtenerDatosAsync()
{
try
{
await RealizarLlamadaAPIAsync();
}
catch (HttpRequestException ex)
{
Console.WriteLine("Error en la solicitud HTTP: " + ex.Message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment