CommandException(String, Boolean, Int32, Exception) Constructor
Namespace: Gemstone.ConsoleAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.138 -- Release Build+dacff88cce10d287c7434d5aac59c76948c712b1
public CommandException(
string message,
bool processCompleted,
int exitCode,
Exception? innerException = null
)
Public Sub New (
message As String,
processCompleted As Boolean,
exitCode As Integer,
Optional innerException As Exception = Nothing
)
public:
CommandException(
String^ message,
bool processCompleted,
int exitCode,
Exception^ innerException = nullptr
)
Gemstone.Console.CommandException = function(message, processCompleted, exitCode, innerException);
Parameters
- 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.