01: package com.sun.portal.desktop.admin.mbeans;
02:
03: /**
04: * $Id: DPAdminWrapperMBeanException.java,v 1.2 2005/01/27 17:45:33 ru111118 Exp $
05: * Copyright 2004 Sun Microsystems, Inc. All
06: * rights reserved. Use of this product is subject
07: * to license terms. Federal Acquisitions:
08: * Commercial Software -- Government Users
09: * Subject to Standard License Terms and
10: * Conditions.
11: *
12: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
13: * are trademarks or registered trademarks of Sun Microsystems,
14: * Inc. in the United States and other countries.
15: */
16:
17: public class DPAdminWrapperMBeanException extends Exception {
18: public DPAdminWrapperMBeanException() {
19: super ();
20: }
21:
22: public DPAdminWrapperMBeanException(String message) {
23: super (message);
24: }
25:
26: public DPAdminWrapperMBeanException(String message, Throwable cause) {
27: super (message, cause);
28: }
29:
30: public DPAdminWrapperMBeanException(Throwable cause) {
31: super(cause);
32: }
33: }
|