Programming Tutorials

Comment on Tutorial - Throwing a Custom Exception in VB.net By Steven Holzner



Comment Added by : richard

Comment Added at : 2012-05-31 08:41:26

Comment on Tutorial : Throwing a Custom Exception in VB.net By Steven Holzner
custom exception

Try
your code block
Catch ex As Exception
exception handling block
Finally
final cleanup block
End Try

if you need sample vb.net custom exception sample

http://net-informations.com/vbprj/programflow/custom-exceptions.htm

richard


View Tutorial