1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.services.security;
18
19 /***
20 * This is the basic abstract Jetspeed Security Exception
21 *
22 * @author <a href="mailto:david@bluesunrise.com">David Sean Taylor</a>
23 * @version $Id: JetspeedSecurityException.java,v 1.3 2004/02/23 03:58:11 jford Exp $
24 */
25
26 abstract public class JetspeedSecurityException extends org.apache.turbine.util.TurbineException {
27
28
29 /***
30 * Constructs a JetspeedSecurityException with no detail message. A detail
31 * message is a String that describes this particular exception.
32 */
33 public JetspeedSecurityException() {
34 super();
35 }
36
37 /***
38 * Construct a nested exception.
39 *
40 * @param msg The detail message.
41 * @param nested the exception or error that caused this exception
42 * to be thrown.
43 */
44 public JetspeedSecurityException( String msg, Throwable nested )
45 {
46 super(msg, nested);
47 }
48
49 /***
50 * Constructs a JetspeedSecurityException with the specified detail message.
51 * A detail message is a String that describes this particular
52 * exception.
53 *
54 * <p>
55 *
56 * @param msg the detail message.
57 */
58 public JetspeedSecurityException(String msg) {
59 super(msg);
60 }
61 }