01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.bridge;
11:
12: /**
13: * This exception gets thrown when an attempt is made to create a transaction with a name that already exists
14: * @author Pierre van Rooden
15: * @version $Id: AlreadyExistsException.java,v 1.3 2003/08/29 09:36:50 pierre Exp $
16: * @since MMBase-1.6
17: */
18: public class AlreadyExistsException extends BridgeException {
19:
20: //javadoc is inherited
21: public AlreadyExistsException() {
22: super ();
23: }
24:
25: //javadoc is inherited
26: public AlreadyExistsException(String message) {
27: super (message);
28: }
29:
30: //javadoc is inherited
31: public AlreadyExistsException(Throwable cause) {
32: super (cause);
33: }
34:
35: //javadoc is inherited
36: public AlreadyExistsException(String message, Throwable cause) {
37: super(message, cause);
38: }
39:
40: }
|