01: /*
02: * UpgradeUtilException.java
03: *
04: * Created on August 11, 2006, 5:02 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package com.sun.portal.fabric.upgrade;
11:
12: /**
13: *
14: * @author ak118254
15: */
16:
17: public class UpgradeUtilException extends Exception {
18: private String message;
19: private Exception orgException;
20:
21: public UpgradeUtilException(String s, Exception e) {
22: this .message = s;
23: this .orgException = e;
24: }
25:
26: public UpgradeUtilException(String s) {
27: this .message = s;
28:
29: }
30:
31: public String getMessage() {
32: return this .getClass().getName() + " : " + this.message;
33: }
34:
35: }
|