blob: b52b7a25e0881071f39f92e1aeabe7959b93c78a [file] [log] [blame]
/**
*******************************************************************************
* 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: 2005/11/01 00:10:53 $
* $Revision: 1.4 $
*
*******************************************************************************
*/
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();
initCause(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;
}
}