01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * Indicates that a Workflow Descriptor was invalid.
09: * Usually this indicates a semantically incorrect XML workflow definition.
10: *
11: * @author <a href="mailto:vorburger@users.sourceforge.net">Michael Vorburger</a>
12: */
13: public class InvalidWorkflowDescriptorException extends
14: FactoryException {
15: //~ Constructors ///////////////////////////////////////////////////////////
16:
17: public InvalidWorkflowDescriptorException(String message) {
18: super (message);
19: }
20:
21: public InvalidWorkflowDescriptorException(String message,
22: Exception cause) {
23: super(message, cause);
24: }
25: }
|