KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > rift > coad > lib > deployment > rmi > RMIException


1 /*
2  * CoadunationLib: The coaduntion implementation library.
3  * Copyright (C) 2006 Rift IT Contracting
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *
19  * XMLConfigurationException.java
20  *
21  * RMIException.java
22  *
23  * Created on November 8, 2006, 6:35 AM
24  *
25  * Copyright November 8, 2006 Rift Marketing CC
26  *
27  * The RMI exception thrown when ever there is an error while dealing with the
28  * RMI or TIE classes.
29  */

30
31 package com.rift.coad.lib.deployment.rmi;
32
33 /**
34  * The RMI exception thrown when ever there is an error while dealing with the
35  * RMI or TIE classes.
36  *
37  * @author mincemeat
38  */

39 public class RMIException extends java.lang.Exception JavaDoc {
40     
41     /**
42      * Creates a new instance of <code>RMIException</code> without detail message.
43      */

44     public RMIException() {
45     }
46     
47     
48     /**
49      * Constructs an instance of <code>RMIException</code> with the specified detail message.
50      *
51      * @param msg the detail message.
52      */

53     public RMIException(String JavaDoc msg) {
54         super(msg);
55     }
56     
57     
58     /**
59      * Constructs an instance of <code>RMIException</code> with the specified detail message.
60      *
61      * @param msg the detail message.
62      * @param ex The exception stack.
63      */

64     public RMIException(String JavaDoc msg, Throwable JavaDoc ex) {
65         super(msg);
66     }
67 }
68
Popular Tags