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