1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.acegisecurity.providers.rcp;
17
18 import org.acegisecurity.AcegiSecurityException;
19
20
21 /***
22 * Thrown if a <code>RemoteAuthenticationManager</code> cannot validate the
23 * presented authentication request.
24 *
25 * <P>
26 * This is thrown rather than the normal <code>AuthenticationException</code>
27 * because <code>AuthenticationException</code> contains additional properties
28 * which may cause issues for the remoting protocol.
29 * </p>
30 *
31 * @author Ben Alex
32 * @version $Id: RemoteAuthenticationException.java,v 1.2 2005/11/17 00:55:51 benalex Exp $
33 */
34 public class RemoteAuthenticationException extends AcegiSecurityException {
35
36
37 /***
38 * Constructs a <code>RemoteAuthenticationException</code> with the
39 * specified message and no root cause.
40 *
41 * @param msg the detail message
42 */
43 public RemoteAuthenticationException(String msg) {
44 super(msg);
45 }
46 }