1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * All rights reserved.4 */5 package com.opensymphony.workflow;6 7 8 /**9 * Indicates that the caller did not have enough permissions to perform some action.10 *11 * @author <a HREF="mailto:plightbo@hotmail.com">Patrick Lightbody</a>12 * @version $Revision: 1.2 $13 */14 public class InvalidRoleException extends WorkflowException {15 //~ Constructors ///////////////////////////////////////////////////////////16 17 public InvalidRoleException(String message) {18 super(message);19 }20 }21