01: /**
02: * $Id: WSRPConsumerRewriterException.java,v 1.1 2004/02/03 20:07:49 mjain 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.consumer.common.WSRPConsumerException;
16:
17: /**
18: * A WSRPRewriterException is thrown when there is an unrecoverable error
19: * while rewriting the content.
20: **/
21: public class WSRPConsumerRewriterException extends
22: WSRPConsumerException {
23:
24: public WSRPConsumerRewriterException(String msg) {
25: super (msg);
26: }
27:
28: public WSRPConsumerRewriterException(String msg, Throwable t) {
29: super(msg, t);
30: }
31: }
|