KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > rmi > activation > ActivateFailedException


1 /*
2  * @(#)ActivateFailedException.java 1.10 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.activation;
9
10 /**
11  * This exception is thrown by the RMI runtime when activation
12  * fails during a remote call to an activatable object.
13  *
14  * @author Ann Wollrath
15  * @version 1.10, 12/19/03
16  * @since 1.2
17  */

18 public class ActivateFailedException extends java.rmi.RemoteException JavaDoc {
19
20     /** indicate compatibility with the Java 2 SDK v1.2 version of class */
21     private static final long serialVersionUID = 4863550261346652506L;
22
23     /**
24      * Constructs an <code>ActivateFailedException</code> with the specified
25      * detail message.
26      *
27      * @param s the detail message
28      * @since 1.2
29      */

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

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