|
JobActionExceptionMessage Property |
This value is a message from the underlying exception. The message stored in this property should not be displayed in the user interface, as it may not be available in the language used by the interface.
This property should only be used for internal troubleshooting, and as a measure of last resort in the event of a completely unexpected error.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntaxpublic string ExceptionMessage { get; set; }
Public Property ExceptionMessage As String
Get
Set
public:
property String^ ExceptionMessage {
String^ get ();
void set (String^ value);
}
function get_ExceptionMessage();
function set_ExceptionMessage(value);
Property Value
Type:
String
The exception message.
Remarks
Job implementations should define specific messages for all known errors that can
occur during the lifetime of a job. The message stored in this property should not
be displayed in the user interface, as it may not be available in the language
used by the console. This property should only be used for internal troubleshooting,
and as measure of last resort in the event of an completely unexpected error.
See Also