Serializable Exception Inheriting NullReferenceException : Exception « Development « VB.Net Tutorial






Imports System
Imports System.Runtime.Serialization

    <Serializable()> Public Class NodeNotFoundException : Inherits NullReferenceException
        Dim st As String()
        'Constructors
        Public Sub New()
            MyBase.New("No such node found in your collection.")
        End Sub
        Public Sub New(ByVal message As String)
            MyBase.New(message)
        End Sub
        Public Sub New(ByVal message As String, ByVal inner As Exception)
            MyBase.New(message, inner)
        End Sub
    End Class








7.4.Exception
7.4.1.Basics of Visual Basic exception handling
7.4.2.Use properties Message, StackTrace and InnerException
7.4.3.Get Message from Exception
7.4.4.Convert Exception to String
7.4.5.Exception fields
7.4.6.Display Exception Trace
7.4.7.Throw Exception out of a Method
7.4.8.Catch Exception in a function
7.4.9.Set Exception HelpLink
7.4.10.Serializable Exception Inheriting NullReferenceException
7.4.11.Catch divided by zero exception
7.4.12.Throw Your own exception in class constructor