jdk/src/share/classes/java/rmi/UnexpectedException.java
changeset 24865 09b1d992ca72
parent 5506 202f599c92aa
--- a/jdk/src/share/classes/java/rmi/UnexpectedException.java	Tue Jun 10 14:17:32 2014 -0700
+++ b/jdk/src/share/classes/java/rmi/UnexpectedException.java	Tue Jun 10 16:18:54 2014 -0700
@@ -32,7 +32,7 @@
  * <code>throws</code> clause of the method in the remote interface.
  *
  * @author  Roger Riggs
- * @since   JDK1.1
+ * @since   1.1
  */
 public class UnexpectedException extends RemoteException {
 
@@ -44,7 +44,7 @@
      * detail message.
      *
      * @param s the detail message
-     * @since JDK1.1
+     * @since 1.1
      */
     public UnexpectedException(String s) {
         super(s);
@@ -56,7 +56,7 @@
      *
      * @param s the detail message
      * @param ex the nested exception
-     * @since JDK1.1
+     * @since 1.1
      */
     public UnexpectedException(String s, Exception ex) {
         super(s, ex);