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 (24.3.0.1000)
Syntax public 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> -> ValidationException
Parameters
- message
- Type: SystemString
The message. - details
- Type: System.Collections.GenericIEnumerableString
The list of messages corresponding to validation failures.
See Also