01: /*
02: * CoadunationLib: The coaduntion implementation library.
03: * Copyright (C) 2006 Rift IT Contracting
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2.1 of the License, or (at your option) any later version.
09: *
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 {
40:
41: /**
42: * Creates a new instance of <code>RMIException</code> without detail message.
43: */
44: public RMIException() {
45: }
46:
47: /**
48: * Constructs an instance of <code>RMIException</code> with the specified detail message.
49: *
50: * @param msg the detail message.
51: */
52: public RMIException(String msg) {
53: super (msg);
54: }
55:
56: /**
57: * Constructs an instance of <code>RMIException</code> with the specified detail message.
58: *
59: * @param msg the detail message.
60: * @param ex The exception stack.
61: */
62: public RMIException(String msg, Throwable ex) {
63: super(msg);
64: }
65: }
|