01: /*
02: * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.monitoring.security;
06:
07: public class SecurityException extends Exception {
08: public SecurityException() {
09: super ();
10: }
11:
12: public SecurityException(final String message) {
13: super (message);
14: }
15:
16: public SecurityException(final String message, final Throwable cause) {
17: super (message, cause);
18: }
19:
20: public SecurityException(final Throwable cause) {
21: super(cause);
22: }
23: }
|