''' ''' Exception class indicating that there was a validation ''' problem with a business object. ''' _ Public Class ValidationException Inherits ApplicationException ''' ''' Initializes a new instance of the ''' class. ''' Public Sub New() End Sub ''' ''' Initializes a new instance of the ''' class ''' with a specified error message. ''' Public Sub New(ByVal message As String) MyBase.New(message) End Sub ''' ''' Initializes a new instance of the ''' class ''' with a specified error message and a reference to the ''' inner exception that is the cause of this exception. ''' Public Sub New(ByVal message As String, ByVal innerException As Exception) MyBase.New(message, innerException) End Sub ''' ''' Initializes a new instance of the ''' class ''' with serialized data. ''' Protected Sub New(ByVal info As System.Runtime.Serialization.SerializationInfo, _ ByVal context As System.Runtime.Serialization.StreamingContext) MyBase.New(info, context) End Sub End Class