1 /*
2 Copyright (c) 2003, J Aaron Farr
3 All rights reserved.
4
5 This software is published under the terms of the JadeTower Software License,
6 a BSD derived license, a copy of which has been included with this
7 distribution in the LICENSE file. <http://www.jadetower.org>
8 */
9
10 package org.jadetower.dao.exception;
11
12 import org.apache.avalon.framework.CascadingException;
13
14 /***
15 * DAO Wrapper Exception
16 */
17 public class DaoException extends CascadingException {
18
19 private Exception cause = null;
20
21 public DaoException(String msg) {
22 super(msg);
23 }
24
25 public DaoException(String msg, Exception e) {
26 super(msg);
27 cause = e;
28 }
29
30 }
This page was automatically generated by Maven