01: /*
02: * Bossa Workflow System
03: *
04: * $Id: PersistenceException.java,v 1.1 2003/02/10 19:43:53 gdvieira Exp $
05: *
06: * Copyright (C) 2003 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;
26:
27: /**
28: * This exception is thrown if an error occours when making an
29: * update persistent. <p>
30: *
31: * @author <a href="http://www.bigbross.com">BigBross Team</a>
32: */
33: public class PersistenceException extends BossaException {
34:
35: /**
36: * See <code>BossaException.BossaException()</code>.
37: *
38: * @see com.bigbross.bossa.BossaException#BossaException()
39: */
40: public PersistenceException() {
41: super ();
42: }
43:
44: /**
45: * See <code>BossaException.BossaException(String)</code>.
46: *
47: * @see com.bigbross.bossa.BossaException#BossaException(String)
48: */
49: public PersistenceException(String message) {
50: super (message);
51: }
52:
53: /**
54: * See <code>BossaException.BossaException(String, Throwable)</code>.
55: *
56: * @see com.bigbross.bossa.BossaException#BossaException(String,
57: * Throwable)
58: */
59: public PersistenceException(String message, Throwable cause) {
60: super (message, cause);
61: }
62:
63: /**
64: * See <code>BossaException.BossaException(Throwable)</code>.
65: *
66: * @see com.bigbross.bossa.BossaException#BossaException(Throwable)
67: */
68: public PersistenceException(Throwable cause) {
69: super(cause);
70: }
71: }
|