1 /*
2 * Created on Nov 21, 2004
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * Full GNU GPL license terms : http://www.fsf.org/licenses/gpl.txt
15 *
16 * Author : mchaplin@users.sourceforge.net
17 */
18 package net.mchaplin.ioc.exp;
19
20 /***
21 * @author mchaplin@users.sourceforge.net
22 *
23 * $Header:
24 * $Revision:
25 * $Date:
26 */
27 public class ContainerException extends Exception {
28
29 static final long serialVersionUID = 0;
30
31 /***
32 * @param cause
33 */
34 public ContainerException(Throwable cause) {
35 super(cause);
36 }
37
38
39
40 }