ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ExecutionException.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ExecutionException.java (file contents):
Revision 1.7 by dl, Sat Dec 27 19:26:25 2003 UTC vs.
Revision 1.8 by jsr166, Thu Apr 20 06:47:22 2006 UTC

# Line 19 | Line 19 | public class ExecutionException extends
19      private static final long serialVersionUID = 7830266012832686185L;
20  
21      /**
22 <     * Constructs a <tt>ExecutionException</tt> with no detail message.
22 >     * Constructs an <tt>ExecutionException</tt> with no detail message.
23       * The cause is not initialized, and may subsequently be
24       * initialized by a call to {@link #initCause(Throwable) initCause}.
25       */
26      protected ExecutionException() { }
27  
28      /**
29 <     * Constructs a <tt>ExecutionException</tt> with the specified detail
29 >     * Constructs an <tt>ExecutionException</tt> with the specified detail
30       * message. The cause is not initialized, and may subsequently be
31       * initialized by a call to {@link #initCause(Throwable) initCause}.
32       *
# Line 37 | Line 37 | public class ExecutionException extends
37      }
38  
39      /**
40 <     * Constructs a <tt>ExecutionException</tt> with the specified detail
40 >     * Constructs an <tt>ExecutionException</tt> with the specified detail
41       * message and cause.
42       *
43       * @param  message the detail message
# Line 49 | Line 49 | public class ExecutionException extends
49      }
50  
51      /**
52 <     * Constructs a <tt>ExecutionException</tt> with the specified cause.
52 >     * Constructs an <tt>ExecutionException</tt> with the specified cause.
53       * The detail message is set to:
54       * <pre>
55       *  (cause == null ? null : cause.toString())</pre>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines