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 SummaryConstructorsConstructorDescriptionExecuteException(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 SummaryModifier and TypeMethodDescriptionintGets the exit value returned by the failed process.Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ExecuteExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- The detail message.
- exitValue- The exit value.
 
- 
ExecuteExceptionConstructs 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- 
getExitValueGets the exit value returned by the failed process.- Returns:
- The exit value.
 
 
-