1 /**
2 * $Id$
3 *
4 * =========================================================================
5 *
6 * Copyright 2005 Tubo
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20 package org.tubo.exception;
21
22
23
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
26
27 /**
28 * Created: Jun 23, 2005 6:28:55 AM
29 * Last Modification Date: $Date: 2006-10-19 12:11:35 -0300 (Thu, 19 Oct 2006) $
30 *
31 * @author jvlio (jvlio@users.sourceforge.net)
32 * @version $Revision: 17 $
33 */
34 public class TuboFlowException extends TuboException {
35 public static final String RCS_ID = "$Id: TuboResourceException.java 17 2006-10-19 15:11:35Z maldito_orco $";
36 private static Log log = LogFactory.getLog(TuboFlowException.class);
37
38 public TuboFlowException() {
39 }
40
41 public TuboFlowException(String message) {
42 super(message);
43 }
44
45 public TuboFlowException(Throwable cause) {
46 super(cause);
47 }
48
49 public TuboFlowException(String message, Throwable cause) {
50 super(message, cause);
51 }
52 }