Author: sgoeschl
Date: Wed Jan 23 13:26:57 2008
New Revision: 614681
URL: http://svn.apache.org/viewvc?rev=614681&view=rev
Log:
Updated javadocs
Modified:
commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
Modified:
commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java?rev=614681&r1=614680&r2=614681&view=diff
==============================================================================
---
commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
(original)
+++
commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ExecuteException.java
Wed Jan 23 13:26:57 2008
@@ -20,22 +20,25 @@
import java.io.IOException;
+/**
+ * An exception indicating that the executing a subprocesses failed.
+ */
public class ExecuteException extends IOException {
- /**
- * Comment for <code>serialVersionUID</code>.
- */
- private static final long serialVersionUID = 3256443620654331699L;
+ /**
+ * Comment for <code>serialVersionUID</code>.
+ */
+ private static final long serialVersionUID = 3256443620654331699L;
/**
* The underlying cause of this exception.
*/
- private Throwable cause = null;
+ private Throwable cause;
/**
* The exit value returned by the failed process
*/
- private int exitValue = 0;
+ private int exitValue;
/**
* Construct a new exception with the specified detail message.