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;
06:
07: public final class MonitoringException extends Exception {
08: public MonitoringException() {
09: super ();
10: }
11:
12: public MonitoringException(final String message) {
13: super (message);
14: }
15:
16: public MonitoringException(final String message,
17: final Throwable cause) {
18: super (message, cause);
19: }
20:
21: public MonitoringException(final Throwable cause) {
22: super(cause);
23: }
24: }
|