KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > InvalidRoleException


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * 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 JavaDoc message) {
18         super(message);
19     }
20 }
21
Popular Tags