01: /*
02: * This file is part of the WfMOpen project.
03: * Copyright (C) 2001-2004 Danet GmbH (www.danet.de), GS-AN.
04: * All rights reserved.
05: *
06: * This program is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU General Public License as published by
08: * the Free Software Foundation; either version 2 of the License, or
09: * (at your option) any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19: *
20: * $Id: RedeliveryRequiredException.java,v 1.3 2006/09/29 12:32:12 drmlipp Exp $
21: *
22: * $Log: RedeliveryRequiredException.java,v $
23: * Revision 1.3 2006/09/29 12:32:12 drmlipp
24: * Consistently using WfMOpen as projct name now.
25: *
26: * Revision 1.2 2005/04/08 11:28:05 drmlipp
27: * Merged changes from 1.3 branch up to 1.3p6.
28: *
29: * Revision 1.1.2.1 2005/04/07 15:54:23 drmlipp
30: * Fixed problem with process not being started. Removed fix that handled
31: * special case of subprocess only.
32: *
33: */
34: package de.danet.an.workflow.ejbs.util;
35:
36: import java.io.Serializable;
37:
38: /**
39: * This class defines an exception that can be used to signal to the
40: * {@link EventHandlerEJB <code>EventHandlerEJB</code>} that an event
41: * nust be redelivered.
42: *
43: * @author <a href="mailto:lipp@danet.de">Michael Lipp</a>
44: * @version $Revision: 1.3 $
45: */
46:
47: public class RedeliveryRequiredException extends Exception implements
48: Serializable {
49:
50: /**
51: * Creates an instance of <code>RedeliveryRequiredException</code>
52: * with all attributes initialized to default values.
53: * @param msg the message
54: */
55: public RedeliveryRequiredException(String msg) {
56: super(msg);
57: }
58:
59: }
|