src/share/classes/java/rmi/MarshalException.java

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

@@ -37,11 +37,11 @@
  * server, parameters may have been deserialized.  A call may not be
  * retransmitted after a <code>MarshalException</code> and reliably preserve
  * "at most once" call semantics.
  *
  * @author  Ann Wollrath
- * @since   JDK1.1
+ * @since   1.1
  */
 public class MarshalException extends RemoteException {
 
     /* indicate compatibility with JDK 1.1.x version of class */
     private static final long serialVersionUID = 6223554758134037936L;

@@ -49,11 +49,11 @@
     /**
      * Constructs a <code>MarshalException</code> with the specified
      * detail message.
      *
      * @param s the detail message
-     * @since JDK1.1
+     * @since 1.1
      */
     public MarshalException(String s) {
         super(s);
     }
 

@@ -61,11 +61,11 @@
      * Constructs a <code>MarshalException</code> with the specified
      * detail message and nested exception.
      *
      * @param s the detail message
      * @param ex the nested exception
-     * @since JDK1.1
+     * @since 1.1
      */
     public MarshalException(String s, Exception ex) {
         super(s, ex);
     }
 }