01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * Indicates that the caller did not have enough permissions to perform some action.
09: *
10: * @author <a href="mailto:plightbo@hotmail.com">Patrick Lightbody</a>
11: * @version $Revision: 1.2 $
12: */
13: public class InvalidRoleException extends WorkflowException {
14: //~ Constructors ///////////////////////////////////////////////////////////
15:
16: public InvalidRoleException(String message) {
17: super(message);
18: }
19: }
|