KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > rmi > server > SocketSecurityException


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
8 package java.rmi.server;
9
10 /**
11  * An obsolete subclass of {@link ExportException}.
12  *
13  * @version 1.13, 12/19/03
14  * @author Ann Wollrath
15  * @since JDK1.1
16  **/

17 public class SocketSecurityException extends ExportException JavaDoc {
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 specified
24      * detail message.
25      *
26      * @param s the detail message.
27      * @since JDK1.1
28      */

29     public SocketSecurityException(String JavaDoc s) {
30     super(s);
31     }
32
33     /**
34      * Constructs an <code>SocketSecurityException</code> with the specified
35      * detail message and nested exception.
36      *
37      * @param s the detail message.
38      * @param ex the nested exception
39      * @since JDK1.1
40      */

41     public SocketSecurityException(String JavaDoc s, Exception JavaDoc ex) {
42     super(s, ex);
43     }
44
45 }
46
Popular Tags