1 package org.astrogrid.security;
2
3 /***
4 * A general exception for security matters.
5 *
6 * @author Guy Rixon
7 */
8 public class SecurityException extends Exception {
9
10 public SecurityException (String message) {
11 super(message);
12 }
13
14 public SecurityException (String message, Throwable t) {
15 super(message, t);
16 }
17
18 }