 | DebugUtilsGetInnerExceptions Method |
Returns an array of the entire exception list in reverse order
(innermost to outermost exception)
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static Exception[] GetInnerExceptions(
Exception ex
)
Public Shared Function GetInnerExceptions (
ex As Exception
) As Exception()
public:
static array<Exception^>^ GetInnerExceptions(
Exception^ ex
)
static member GetInnerExceptions :
ex : Exception -> Exception[]
Parameters
- ex
- Type: SystemException
The original exception to work off
Return Value
Type:
ExceptionArray of Exceptions from innermost to outermost
See Also