Package org.apache.commons.exec
Class ExecuteException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.exec.ExecuteException
- All Implemented Interfaces:
Serializable
An exception indicating that the executing a subprocesses failed.
- See Also:
-
Constructor Summary
ConstructorDescriptionExecuteException
(String message, int exitValue) Constructs a new exception with the specified detail message.ExecuteException
(String message, int exitValue, Throwable cause) Constructs a new exception with the specified detail message and cause. -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the exit value returned by the failed process.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecuteException
Constructs a new exception with the specified detail message.- Parameters:
message
- The detail message.exitValue
- The exit value.
-
ExecuteException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The detail message.exitValue
- The exit value.cause
- The underlying cause.
-
-
Method Details
-
getExitValue
Gets the exit value returned by the failed process.- Returns:
- The exit value.
-