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 exception is thrown when the requested user principal was not found.
21 *
22 * @author <a href="mailto:david@bluesunrise.com">David Sean Taylor</a>
23 * @version $Id: UnknownUserException.java,v 1.3 2004/02/23 03:58:11 jford Exp $
24 */
25
26 public class UnknownUserException extends UserException {
27
28 /***
29 * Constructs an UnknownUserException with no detail message. A detail
30 * message is a String that describes this particular exception.
31 */
32 public UnknownUserException() {
33 super();
34 }
35
36 /***
37 * Constructs an UnknownUserException with the specified detail message.
38 * A detail message is a String that describes this particular
39 * exception.
40 *
41 * <p>
42 *
43 * @param msg the detail message.
44 */
45 public UnknownUserException(String msg) {
46 super(msg);
47 }
48
49 /***
50 * Construct a nested exception.
51 *
52 * @param msg The detail message.
53 * @param nested the exception or error that caused this exception
54 * to be thrown.
55 */
56 public UnknownUserException( String msg, Throwable nested )
57 {
58 super(msg, nested);
59 }
60
61 }