Throws an exception within a procedure.
Throw expression
The Throw statement throws an exception that you can handle with structured exception-handling code (Try...Catch...Finally) or unstructured exception-handling code (On Error GoTo). You can use the Throw statement to trap errors within your code, because Visual Basic moves up the call stack until it finds the appropriate exception-handling code.
The following code uses the Throw statement to throw an exception:
' Throws a new exception.
Throw New System.Exception("An exception has occurred.")
Namespace: Microsoft.VisualBasic
Module: Interaction
Assembly: Microsoft Visual Basic .NET Runtime (in Microsoft.VisualBasic.dll)