| TaskError Constructor |
Namespace:
Mastersign.Bench
Assembly:
BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax public TaskError(
string message,
string appId = null,
string detailedMessage = null,
string consoleOutput = null,
Exception exception = null
)
Public Sub New (
message As String,
Optional appId As String = Nothing,
Optional detailedMessage As String = Nothing,
Optional consoleOutput As String = Nothing,
Optional exception As Exception = Nothing
)
Parameters
- message
- Type: SystemString
A short message describing the error. - appId (Optional)
- Type: SystemString
Th ID of the affected app or null. - detailedMessage (Optional)
- Type: SystemString
A detailed message describing the error or null. - consoleOutput (Optional)
- Type: SystemString
The output of executed programs or null. - exception (Optional)
- Type: SystemException
The execption that caused the error or null.
See Also