我有一小段代码贯穿一些事务进行处理。每个事务都标有事务号,该事务号由外部程序生成,不一定按顺序排列。当我在处理代码中捕获一个异常时,我会将它扔到主类并记录它以供稍后查看。我想将交易号添加到这个抛出的异常中。是否可以在保持正确堆栈跟踪的同时做到这一点?
例如:
public static void main(String[] args) {
try{
processMessage();
}catch(Exception E){
E.printStackTrace();
}
}
private static void processMessage() throws Exception{
String transNbr = "";
try{
transNbr = "2345";
throw new Exception();
}catch(Exception E){
if(!transNbr.equals("")){
//stack trace originates from here, not from actual exception
throw new Exception("transction: " + transNbr);
}else{
//stack trace gets passed correctly but no custom message available
throw E;
}
}
}