1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.struts.chain.commands;
19
20
21 /***
22 * <p>Exception thrown when the chosen action mapping is not authorized for
23 * the current request.</p>
24 *
25 * @version $Rev: 421119 $ $Date: 2005-06-04 10:58:46 -0400 (Sat, 04 Jun 2005)
26 * $
27 */
28 public class UnauthorizedActionException extends Exception {
29 /***
30 * <p> Default no-argument constructor. </p>
31 */
32 public UnauthorizedActionException() {
33 super();
34 }
35
36 /***
37 * <p> Constructor to set message on instantiation. </p>
38 *
39 * @param message The error or warning message.
40 */
41 public UnauthorizedActionException(String message) {
42 super(message);
43 }
44 }