1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * All rights reserved.4 */5 package com.opensymphony.workflow;6 7 8 /**9 * @author Hani Suleiman10 * Date: Aug 28, 200311 * Time: 8:19:30 PM12 */13 public class InvalidEntryStateException extends WorkflowException {14 //~ Constructors ///////////////////////////////////////////////////////////15 16 public InvalidEntryStateException(String message) {17 super(message);18 }19 }20