Inner Exception Demo : Exception Stack « Development « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Development » Exception StackScreenshots 
Inner Exception Demo
Inner Exception Demo

Imports System
Imports System.Text
Imports System.Text.RegularExpressions


Public Class MainClass
         Shared Sub Main(  )
             Try
                 DangerousFunc1(  )

             Catch As MyCustomException
                 Console.WriteLine(ControlChars.Lf + "{0}", e.Message)
                 Console.WriteLine("Retrieving exception history...")
                 Dim inner As Exception = e.InnerException
                 While Not (inner Is Nothing)
                     Console.WriteLine("{0}", inner.Message)
                     inner = inner.InnerException
                 End While
             End Try
         End Sub 'Main

         Shared Public Sub DangerousFunc1(  )
             Try
                 DangerousFunc2(  )
             Catch As System.Exception
                 Dim ex As New MyCustomException_
                  "E3 - Custom Exception Situation!", e)
                 Throw ex
             End Try
         End Sub

         Shared Public Sub DangerousFunc2(  )
             Try
                 DangerousFunc3(  )
             Catch As System.DivideByZeroException
                 Dim ex As New Exception_
                     "E2 - Func2 caught divide by zero", e)
                 Throw ex
             End Try
         End Sub 'DangerousFunc2

         Shared Public Sub DangerousFunc3(  )
             Try
                 DangerousFunc4(  )
             Catch As System.ArithmeticException
                 Throw e

             Catch As System.Exception
                 Console.WriteLine("Exception handled here!")

             End Try
         End Sub 'DangerousFunc3

         Shared Public Sub DangerousFunc4(  )
             Throw New DivideByZeroException("E1 - DivideByZero Exception")
         End Sub
   
End Class

     Public Class MyCustomException
         Inherits System.ApplicationException

         Public Sub New(ByVal message As String, ByVal inner As Exception)
             MyBase.New(message, inner)
         End Sub 'New
     End Class 'MyCustomException

           
       
Related examples in the same category
1.Display Exception Stack TraceDisplay Exception Stack Trace
w__w___w._j___a_va_2s___.__c__o__m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.