01: package com.jat.business;
02:
03: /**
04: * <p>Title: JAT</p>
05: * <p>Description: </p>
06: * <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
07: * <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
08: * @author stf
09: * @version 1.1
10: */
11:
12: public class BusinessException extends Exception {
13:
14: public BusinessException() {
15: super ();
16: }
17:
18: public BusinessException(Exception ex) {
19: super (ex);
20: }
21:
22: public BusinessException(String message) {
23: super(message);
24: }
25:
26: }
|