01: package com.sun.portal.fabric.upgrade;
02:
03: public class UpgradeException extends Throwable {
04: private String message;
05: private Exception orgException;
06:
07: public UpgradeException(String s, Exception e) {
08: this .message = s;
09: this .orgException = e;
10: }
11:
12: public UpgradeException(String s) {
13: this .message = s;
14:
15: }
16:
17: public String getMessage() {
18: return this .getClass().getName() + " : " + this.message;
19: }
20:
21: }
|