1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.acegisecurity;
17
18 import org.springframework.core.NestedRuntimeException;
19
20
21 /***
22 * Abstract superclass for all exceptions thrown in the security package and
23 * subpackages.
24 *
25 * <p>
26 * Note that this is a runtime (unchecked) exception. Security exceptions are
27 * usually fatal; there is no reason for them to be checked.
28 * </p>
29 *
30 * @author Ben Alex
31 * @version $Id: AcegiSecurityException.java,v 1.4 2005/11/17 00:55:49 benalex Exp $
32 */
33 public abstract class AcegiSecurityException extends NestedRuntimeException {
34
35
36 /***
37 * Constructs an <code>AcegiSecurityException</code> with the specified
38 * message and root cause.
39 *
40 * @param msg the detail message
41 * @param t the root cause
42 */
43 public AcegiSecurityException(String msg, Throwable t) {
44 super(msg, t);
45 }
46
47 /***
48 * Constructs an <code>AcegiSecurityException</code> with the specified
49 * message and no root cause.
50 *
51 * @param msg the detail message
52 */
53 public AcegiSecurityException(String msg) {
54 super(msg);
55 }
56 }