01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * @author Hani Suleiman
09: * Date: Aug 28, 2003
10: * Time: 8:19:30 PM
11: */
12: public class InvalidEntryStateException extends WorkflowException {
13: //~ Constructors ///////////////////////////////////////////////////////////
14:
15: public InvalidEntryStateException(String message) {
16: super(message);
17: }
18: }
|