KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > InvalidWorkflowDescriptorException


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.workflow;
6
7
8 /**
9  * Indicates that a Workflow Descriptor was invalid.
10  * Usually this indicates a semantically incorrect XML workflow definition.
11  *
12  * @author <a HREF="mailto:vorburger@users.sourceforge.net">Michael Vorburger</a>
13  * @version $Revision: 1.3 $
14  */

15 public class InvalidWorkflowDescriptorException extends FactoryException {
16     //~ Constructors ///////////////////////////////////////////////////////////
17

18     public InvalidWorkflowDescriptorException(String JavaDoc message) {
19         super(message);
20     }
21
22     public InvalidWorkflowDescriptorException(String JavaDoc message, Exception JavaDoc cause) {
23         super(message, cause);
24     }
25 }
26
Popular Tags