01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.subscriptions.context;
06:
07: import com.sun.portal.desktop.DesktopError;
08:
09: /**
10: * This exception is a generic superclass for all provider related
11: * exceptions. All exceptions deliberately-thrown from a provider
12: * should be a subclass of this.
13: **/
14:
15: public class ContextError extends DesktopError {
16:
17: public ContextError(String msg) {
18: super (msg);
19: }
20:
21: public ContextError(String msg, Throwable e) {
22: super(msg, e);
23: }
24:
25: }
|