1 /*
2 * EL4J, the Extension Library for the J2EE, adds incremental enhancements to
3 * the spring framework, http://el4j.sf.net
4 * Copyright (C) 2009 by ELCA Informatique SA, Av. de la Harpe 22-24,
5 * 1000 Lausanne, Switzerland, http://www.elca.ch
6 *
7 * EL4J is published under the GNU Lesser General Public License (LGPL)
8 * Version 2.1. See http://www.gnu.org/licenses/
9 *
10 * This program 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
13 * GNU Lesser General Public License for more details.
14 *
15 * For alternative licensing, please contact info@elca.ch
16 */
17 package ch.elca.el4j.util.socketstatistics;
18
19
20 /**
21 * Exception handling for class RefelctiveDelegator.
22 *
23 * @svnLink $Revision: 3929 $;$Date: 2009-09-25 16:38:41 +0200 (Fr, 25. Sep 2009) $;$Author: jonasha $;$URL: https://el4j.svn.sourceforge.net/svnroot/el4j/branches/el4j_3_1/el4j/framework/modules/socketstatistics/src/main/java/ch/elca/el4j/util/socketstatistics/DelegationException.java $
24 *
25 * @author Jonas Hauenstein (JHN)
26 */
27 public class DelegationException extends RuntimeException {
28 /**
29 * Constructor.
30 *
31 * @param message
32 * message of exception
33 */
34 public DelegationException(String message) {
35 super(message);
36 }
37
38 /**
39 * Constructor.
40 *
41 * @param message
42 * message of exception
43 * @param cause
44 * cause of exception
45 */
46 public DelegationException(String message, Throwable cause) {
47 super(message, cause);
48 }
49
50 /**
51 * Constructor.
52 *
53 * @param cause
54 * cause of exception
55 */
56 public DelegationException(Throwable cause) {
57 super(cause);
58 }
59 }