src/share/classes/java/rmi/ServerError.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

@@ -33,11 +33,11 @@
  *
  * A <code>ServerError</code> instance contains the original
  * <code>Error</code> that occurred as its cause.
  *
  * @author  Ann Wollrath
- * @since   JDK1.1
+ * @since   1.1
  */
 public class ServerError extends RemoteException {
 
     /* indicate compatibility with JDK 1.1.x version of class */
     private static final long serialVersionUID = 8455284893909696482L;

@@ -46,11 +46,11 @@
      * Constructs a <code>ServerError</code> with the specified
      * detail message and nested error.
      *
      * @param s the detail message
      * @param err the nested error
-     * @since JDK1.1
+     * @since 1.1
      */
     public ServerError(String s, Error err) {
         super(s, err);
     }
 }