c# multiple exceptions same handler

132

c# multiple exceptions same handler -

catch (Exception ex)            
{                
    if (ex is FormatException || ex is OverflowException)
    {
        WebId = Guid.Empty;
        return;
    }

    throw;
}

Comments

Submit
0 Comments