1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.acegisecurity;
17
18 /***
19 * Thrown if an authentication request is rejected because there is no {@link
20 * Authentication} object in the {@link org.acegisecurity.context.SecurityContext SecurityContext}.
21 *
22 * @author Ben Alex
23 * @version $Id: AuthenticationCredentialsNotFoundException.java,v 1.5 2005/11/17 00:55:49 benalex Exp $
24 */
25 public class AuthenticationCredentialsNotFoundException
26 extends AuthenticationException {
27
28
29 /***
30 * Constructs an <code>AuthenticationCredentialsNotFoundException</code>
31 * with the specified message.
32 *
33 * @param msg the detail message
34 */
35 public AuthenticationCredentialsNotFoundException(String msg) {
36 super(msg);
37 }
38
39 /***
40 * Constructs an <code>AuthenticationCredentialsNotFoundException</code>
41 * with the specified message and root cause.
42 *
43 * @param msg the detail message
44 * @param t root cause
45 */
46 public AuthenticationCredentialsNotFoundException(String msg, Throwable t) {
47 super(msg, t);
48 }
49 }