KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > airsent > business > AirSentBusinessException


1 /*
2  * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
3  * Reserved.
4  *
5  * This source code file is distributed by Lutris Technologies, Inc. for
6  * use only by licensed users of product(s) that include this source
7  * file. Use of this source file or the software that uses it is covered
8  * by the terms and conditions of the Lutris Enhydra Development License
9  * Agreement included with this product.
10  *
11  * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
12  * ANY KIND, either express or implied. See the License for the specific terms
13  * governing rights and limitations under the License.
14  *
15  * Contributor(s):
16  *
17  * $Id: AirSentBusinessException.java,v 1.1 2004/08/16 09:33:11 slobodan Exp $
18  */

19 package com.lutris.airsent.business;
20
21 //import com.lutris.airsent.AirSentException;
22
import com.lutris.airsent.spec.AirSentException;
23 /**
24  * Business exception class.
25  */

26 public class AirSentBusinessException
27     extends AirSentException {
28
29     /**
30      * Public constructor to initialize an exception with a message
31      * and the exception that spawned it
32      */

33     public AirSentBusinessException(String JavaDoc msg, Throwable JavaDoc ex) {
34     super(msg, ex);
35     }
36
37     /**
38      * Public constructor to initialize an exception with a message
39      */

40     public AirSentBusinessException(String JavaDoc msg) {
41     super(msg);
42     }
43     
44     /**
45      * Public constructor to initialize an exception with an exception
46      *
47      */

48     public AirSentBusinessException(Throwable JavaDoc ex) {
49     super(ex);
50     }
51 }
52
53
Popular Tags