5760c7b55b
X-SVN-Rev: 7326
53 lines
1.7 KiB
Java
53 lines
1.7 KiB
Java
/**
|
|
*******************************************************************************
|
|
* Copyright (C) 1996-2001, International Business Machines Corporation and *
|
|
* others. All Rights Reserved. *
|
|
*******************************************************************************
|
|
*
|
|
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/text/utility/ChainException.java,v $
|
|
* $Date: 2001/12/06 00:05:52 $
|
|
* $Revision: 1.3 $
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
package com.ibm.text.utility;
|
|
|
|
|
|
import java.text.*;
|
|
import java.io.*;
|
|
|
|
public class ChainException extends RuntimeException {
|
|
Object[] keyData;
|
|
String messageFormat;
|
|
Exception chain;
|
|
|
|
public ChainException (String messageFormat, Object[] objects) {
|
|
this.messageFormat = messageFormat;
|
|
keyData = (Object[]) objects.clone();
|
|
}
|
|
|
|
public ChainException (String messageFormat, Object[] objects, Exception chainedException) {
|
|
this.messageFormat = messageFormat;
|
|
keyData = objects == null ? null : (Object[]) objects.clone();
|
|
chain = chainedException;
|
|
}
|
|
|
|
public String getMessage() {
|
|
String chainMsg = "";
|
|
if (chain != null) {
|
|
chainMsg = "; " + chain.getClass().getName()
|
|
+ ", " + chain.getMessage();
|
|
StringWriter w = new StringWriter();
|
|
PrintWriter p = new PrintWriter(w);
|
|
chain.printStackTrace(p);
|
|
chainMsg += ", " + w.getBuffer();
|
|
p.close();
|
|
}
|
|
String main = "";
|
|
if (keyData != null) main = MessageFormat.format(messageFormat, keyData);
|
|
return main + chainMsg;
|
|
}
|
|
}
|
|
|