01: package com.sun.portal.desktop.context;
02:
03: import com.sun.portal.desktop.DesktopException;
04:
05: public class ContextException extends DesktopException {
06: public ContextException(String msg) {
07: super (msg);
08: }
09:
10: public ContextException(String msg, Throwable e) {
11: super(msg, e);
12: }
13: }
|