1 /*2 * @(#)SocketSecurityException.java 1.13 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package java.rmi.server;9 10 /**11 * An obsolete subclass of {@link ExportException}.12 *13 * @version 1.13, 12/19/0314 * @author Ann Wollrath15 * @since JDK1.116 **/17 public class SocketSecurityException extends ExportException {18 19 /* indicate compatibility with JDK 1.1.x version of class */20 private static final long serialVersionUID = -7622072999407781979L;21 22 /**23 * Constructs an <code>SocketSecurityException</code> with the specified24 * detail message.25 *26 * @param s the detail message.27 * @since JDK1.128 */29 public SocketSecurityException(String s) {30 super(s);31 }32 33 /**34 * Constructs an <code>SocketSecurityException</code> with the specified35 * detail message and nested exception.36 *37 * @param s the detail message.38 * @param ex the nested exception39 * @since JDK1.140 */41 public SocketSecurityException(String s, Exception ex) {42 super(s, ex);43 }44 45 }46