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.desktop.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: public ContextError(String msg) {
17: super (msg);
18: }
19:
20: public ContextError(String msg, String type) {
21: super (msg, type);
22: }
23:
24: public ContextError(String msg, Throwable t) {
25: super (msg, t);
26: }
27:
28: public ContextError(String msg, Throwable t, String type) {
29: super (msg, t, type);
30: }
31:
32: public ContextError(Throwable t) {
33: super (t);
34: }
35:
36: public ContextError(Throwable t, String type) {
37: super(t, type);
38: }
39: }
|