KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ofbiz > entity > transaction > GenericTransactionException


1 /*
2  * $Id: GenericTransactionException.java 6778 2006-02-20 05:13:55Z jonesde $
3  *
4  * Copyright 2001-2006 The Apache Software Foundation
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
7  * use this file except in compliance with the License. You may obtain a copy of
8  * the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations
16  * under the License.
17  */

18 package org.ofbiz.entity.transaction;
19
20 import org.ofbiz.entity.GenericEntityException;
21
22 /**
23  * GenericTransactionException
24  *
25  * @author <a HREF="mailto:jonesde@ofbiz.org">David E. Jones</a>
26  * @version $Rev: 6778 $
27  * @since 2.0
28  */

29 public class GenericTransactionException extends GenericEntityException {
30
31     public GenericTransactionException() {
32         super();
33     }
34
35     public GenericTransactionException(String JavaDoc str) {
36         super(str);
37     }
38
39     public GenericTransactionException(String JavaDoc str, Throwable JavaDoc nested) {
40         super(str, nested);
41     }
42 }
43
Popular Tags