Capturer plusieurs exceptions à la fois ?
Capturez System.Exception et faites un aiguillage sur les types
catch (Exception ex)
{
if (ex is FormatException || ex is OverflowException)
{
WebId = Guid.Empty;
}
else
throw;
}