Exception Handling in VB.NET
by
Rajesh VS
on
Jun 10, 2003
Exception handling is an in built mechanism in .NET framework to detect and handle run time errors. The .NET framework contains lots of standard exceptions. The exceptions are anomalies that occur during the execution of a program. They can be because of user, logic or system errors.
|
|
|
|
Exceptions and Exception Stack
by
Luke Venediger
on
Jun 10, 2003
VB.NET has introduced possibly the best tool to use for application error trapping: The exception. An exception is an error condition that is raised whenever your application misbehaves or identifies a problem that needs to be dealt with right away. This tutorial requires that you have a basic understanding of VB.NET (or Java) exceptions and that you have used them a few times in your code.
|
|