ayi <t>Catch System.Exception and switch on the types<br/> <br/> catch (Exception ex) <br/> { <br/> if (ex is FormatException || ex is OverflowException)<br/> {<br/> WebId = Guid.Empty;<br/> }<br/> else<br/> throw;<br/> }<br/> <br/> ```</t>