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

Comparing jsr166/src/jdk7/java/util/concurrent/ExecutionException.java (file contents):
Revision 1.1 by dl, Sun Dec 16 20:55:15 2012 UTC vs.
Revision 1.2 by jsr166, Wed Jan 16 01:39:37 2013 UTC

# Line 19 | Line 19 | public class ExecutionException extends
19      private static final long serialVersionUID = 7830266012832686185L;
20  
21      /**
22 <     * Constructs an <tt>ExecutionException</tt> with no detail message.
22 >     * Constructs an {@code ExecutionException} 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 an <tt>ExecutionException</tt> with the specified detail
29 >     * Constructs an {@code ExecutionException} 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 an <tt>ExecutionException</tt> with the specified detail
40 >     * Constructs an {@code ExecutionException} 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 an <tt>ExecutionException</tt> with the specified cause.
52 >     * Constructs an {@code ExecutionException} with the specified cause.
53       * The detail message is set to {@code (cause == null ? null :
54       * cause.toString())} (which typically contains the class and
55 <     * detail message of <tt>cause</tt>).
55 >     * detail message of {@code cause}).
56       *
57       * @param  cause the cause (which is saved for later retrieval by the
58       *         {@link #getCause()} method)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines