01: /*
02: * Bossa Workflow System
03: *
04: * $Id: DataTransferException.java,v 1.1 2004/03/15 22:20:31 gdvieira Exp $
05: *
06: * Copyright (C) 2004 OpenBR Sistemas S/C Ltda.
07: *
08: * This file is part of Bossa.
09: *
10: * Bossa is free software; you can redistribute it and/or modify it
11: * under the terms of version 2 of the GNU General Public License as
12: * published by the Free Software Foundation.
13: *
14: * This program is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * General Public License for more details.
18: *
19: * You should have received a copy of the GNU General Public
20: * License along with this program; if not, write to the
21: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22: * Boston, MA 02111-1307, USA.
23: */
24:
25: package com.bigbross.bossa.io;
26:
27: import com.bigbross.bossa.BossaException;
28:
29: /**
30: * This exception is thrown if an error occours when exporting or
31: * importing Bossa data. <p>
32: *
33: * @author <a href="http://www.bigbross.com">BigBross Team</a>
34: */
35: public class DataTransferException extends BossaException {
36:
37: /**
38: * See <code>BossaException.BossaException()</code>.
39: *
40: * @see com.bigbross.bossa.BossaException#BossaException()
41: */
42: public DataTransferException() {
43: super ();
44: }
45:
46: /**
47: * See <code>BossaException.BossaException(String)</code>.
48: *
49: * @see com.bigbross.bossa.BossaException#BossaException(String)
50: */
51: public DataTransferException(String message) {
52: super (message);
53: }
54:
55: /**
56: * See <code>BossaException.BossaException(String, Throwable)</code>.
57: *
58: * @see com.bigbross.bossa.BossaException#BossaException(String,
59: * Throwable)
60: */
61: public DataTransferException(String message, Throwable cause) {
62: super (message, cause);
63: }
64:
65: /**
66: * See <code>BossaException.BossaException(Throwable)</code>.
67: *
68: * @see com.bigbross.bossa.BossaException#BossaException(Throwable)
69: */
70: public DataTransferException(Throwable cause) {
71: super(cause);
72: }
73: }
|