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,47 **** * 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 */ public class MarshalException extends RemoteException { /* indicate compatibility with JDK 1.1.x version of class */ private static final long serialVersionUID = 6223554758134037936L; --- 37,47 ---- * 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 1.1 */ public class MarshalException extends RemoteException { /* indicate compatibility with JDK 1.1.x version of class */ private static final long serialVersionUID = 6223554758134037936L;
*** 49,59 **** /** * Constructs a <code>MarshalException</code> with the specified * detail message. * * @param s the detail message ! * @since JDK1.1 */ public MarshalException(String s) { super(s); } --- 49,59 ---- /** * Constructs a <code>MarshalException</code> with the specified * detail message. * * @param s the detail message ! * @since 1.1 */ public MarshalException(String s) { super(s); }
*** 61,71 **** * 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 */ public MarshalException(String s, Exception ex) { super(s, ex); } } --- 61,71 ---- * Constructs a <code>MarshalException</code> with the specified * detail message and nested exception. * * @param s the detail message * @param ex the nested exception ! * @since 1.1 */ public MarshalException(String s, Exception ex) { super(s, ex); } }