ExceptionExtensionsSetDetailsMessage Method

Sets the details message on an exception object.

Namespace:  Dundas.BI
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
public static Exception SetDetailsMessage(
	this Exception exception,
	string? detailsMessage
)

Parameters

exception
Type: SystemException
The exception.
detailsMessage
Type: SystemString
The details message to assign to exception.

Return Value

Type: Exception
The provided exception.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Exception. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionexception is .
See Also