Salut
http://www.asp-magazine.com/fr/aspnet/langages/structure16.asp
Dans spécifique exception tu mets des exceptions du framework ou personnelles
http://www.vbfrance.com/codes/LEVER-EXCEPTION-PERSONNALISE_21863.aspx
Pour exemple d'exception
http://www.devtips.net/article.aspx?id=74
Attention il faut respecté l'arboresence des exceptions
Car
Catch e As Exception
Console.WriteLine("Exception handled: " + e.Message);
Catch e As IndexOutOfRangeException never reached
Console.WriteLine("Exception handled: " + e.Message);
End Try
ne fonctionnera pas ou ne compilera pas.
Voila maintenant tu connais les exceptions.