src/share/classes/java/rmi/ServerRuntimeException.java

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

*** 38,48 **** * * <p>A <code>ServerRuntimeException</code> is not thrown from servers * executing on the Java 2 platform v1.2 or later versions. * * @author Ann Wollrath ! * @since JDK1.1 * @deprecated no replacement */ @Deprecated public class ServerRuntimeException extends RemoteException { --- 38,48 ---- * * <p>A <code>ServerRuntimeException</code> is not thrown from servers * executing on the Java 2 platform v1.2 or later versions. * * @author Ann Wollrath ! * @since 1.1 * @deprecated no replacement */ @Deprecated public class ServerRuntimeException extends RemoteException {
*** 54,64 **** * detail message and nested exception. * * @param s the detail message * @param ex the nested exception * @deprecated no replacement ! * @since JDK1.1 */ @Deprecated public ServerRuntimeException(String s, Exception ex) { super(s, ex); } --- 54,64 ---- * detail message and nested exception. * * @param s the detail message * @param ex the nested exception * @deprecated no replacement ! * @since 1.1 */ @Deprecated public ServerRuntimeException(String s, Exception ex) { super(s, ex); }