ValidationException Constructor (String, IEnumerableString) | 
 
            Initializes a new instance of the 
ValidationException class with a list
            of specific messages corresponding to the validation failures.
            
 
    Namespace: 
   Dundas.BI
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic ValidationException(
	string? message,
	IEnumerable<string>? details
)
Public Sub New ( 
	message As String,
	details As IEnumerable(Of String)
)
public:
ValidationException(
	String^ message, 
	IEnumerable<String^>^ details
)
new : 
        message : string * 
        details : IEnumerable<string> -> ValidationExceptionParameters
- message
 - Type: SystemString
The message. - details
 - Type: System.Collections.GenericIEnumerableString
The list of messages corresponding to validation failures. 
See Also