|
CommandException(String, Boolean, Int32, Exception) Constructor
|
Namespace: GSF.ConsoleAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public CommandException(
string message,
bool processCompleted,
int exitCode,
Exception innerException = null
)
public:
CommandException(
String^ message,
bool processCompleted,
int exitCode,
Exception^ innerException = nullptr
)
new :
message : string *
processCompleted : bool *
exitCode : int *
?innerException : Exception
(* Defaults:
let _innerException = defaultArg innerException null
*)
-> CommandException
GSF.Console.CommandException = function(message, processCompleted, exitCode, innerException);
View SourceParameters
- message String
- The error message that explains the reason for the exception.
- processCompleted Boolean
- Flag that determines if the source of command exception completed processing.
- exitCode Int32
- Exit code of command process, assuming process successfully completed.
- innerException Exception (Optional)
- The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
See Also