01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * @author Hani Suleiman (hani@formicary.net)
09: * Date: Apr 8, 2003
10: * Time: 9:42:15 AM
11: */
12: public class FactoryException extends WorkflowException {
13: //~ Constructors ///////////////////////////////////////////////////////////
14:
15: public FactoryException() {
16: }
17:
18: public FactoryException(String message) {
19: super (message);
20: }
21:
22: public FactoryException(Exception cause) {
23: super (cause);
24: }
25:
26: public FactoryException(String message, Exception cause) {
27: super(message, cause);
28: }
29: }
|