01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * Exception thrown to indicate that the action just attempt is invalid
09: * for the specified workflow.
10: *
11: * @author Hani Suleiman (hani@formicary.net)
12: */
13: public class InvalidActionException extends InternalWorkflowException {
14: //~ Constructors ///////////////////////////////////////////////////////////
15:
16: public InvalidActionException() {
17: }
18:
19: public InvalidActionException(String message) {
20: super (message);
21: }
22:
23: public InvalidActionException(Exception cause) {
24: super (cause);
25: }
26:
27: public InvalidActionException(String message, Exception cause) {
28: super(message, cause);
29: }
30: }
|