01: /**
02: * $Id: WSRPConsumerException.java,v 1.2 2003/12/19 22:46:40 jtb Exp $
03: * Copyright 2003 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.wsrp.consumer.common;
14:
15: import com.sun.portal.wsrp.WSRPException;
16:
17: /**
18: * A WSRPException is thrown when there is an unrecoverable error
19: * in WSRP consumer implementation.
20: **/
21: public class WSRPConsumerException extends WSRPException {
22:
23: public WSRPConsumerException(String msg) {
24: super (msg);
25: }
26:
27: public WSRPConsumerException(String msg, Throwable t) {
28: super(msg, t);
29: }
30: }
|