src/share/classes/java/rmi/server/SkeletonNotFoundException.java

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

*** 31,41 **** * A <code>SkeletonNotFoundException</code> is thrown if the * <code>Skeleton</code> corresponding to the remote object being * exported is not found. Skeletons are no longer required, so this * exception is never thrown. * ! * @since JDK1.1 * @deprecated no replacement. Skeletons are no longer required for remote * method calls in the Java 2 platform v1.2 and greater. */ @Deprecated public class SkeletonNotFoundException extends RemoteException { --- 31,41 ---- * A <code>SkeletonNotFoundException</code> is thrown if the * <code>Skeleton</code> corresponding to the remote object being * exported is not found. Skeletons are no longer required, so this * exception is never thrown. * ! * @since 1.1 * @deprecated no replacement. Skeletons are no longer required for remote * method calls in the Java 2 platform v1.2 and greater. */ @Deprecated public class SkeletonNotFoundException extends RemoteException {
*** 46,56 **** /** * Constructs a <code>SkeletonNotFoundException</code> with the specified * detail message. * * @param s the detail message. ! * @since JDK1.1 */ public SkeletonNotFoundException(String s) { super(s); } --- 46,56 ---- /** * Constructs a <code>SkeletonNotFoundException</code> with the specified * detail message. * * @param s the detail message. ! * @since 1.1 */ public SkeletonNotFoundException(String s) { super(s); }
*** 58,68 **** * Constructs a <code>SkeletonNotFoundException</code> with the specified * detail message and nested exception. * * @param s the detail message. * @param ex the nested exception ! * @since JDK1.1 */ public SkeletonNotFoundException(String s, Exception ex) { super(s, ex); } } --- 58,68 ---- * Constructs a <code>SkeletonNotFoundException</code> with the specified * detail message and nested exception. * * @param s the detail message. * @param ex the nested exception ! * @since 1.1 */ public SkeletonNotFoundException(String s, Exception ex) { super(s, ex); } }