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