📄 axisfaultexceptionreader.java
字号:
/* * $Id: AxisFaultExceptionReader.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.soap.axis;import org.mule.api.config.ExceptionReader;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import org.apache.axis.AxisFault;/** * Will format and display additional information stored with an Axis fault that is * usually hidden when logged. */public class AxisFaultExceptionReader implements ExceptionReader{ public String getMessage(Throwable t) { AxisFault e = (AxisFault)t; Map props = getInfo(e); StringBuffer msg = new StringBuffer(64); msg.append("("); for (Iterator iterator = props.entrySet().iterator(); iterator.hasNext();) { Map.Entry entry = (Map.Entry)iterator.next(); msg.append(entry.getKey()).append(": ").append(entry.getValue()).append(", "); } msg.append(")"); return e.getMessage() + msg.toString(); } public Throwable getCause(Throwable t) { AxisFault e = (AxisFault)t; Throwable cause = e.detail; if (cause == null) { cause = e.getCause(); } return cause; } public Class getExceptionType() { return AxisFault.class; } /** * Returns a map of the non-stanard information stored on the exception * * @return a map of the non-stanard information stored on the exception */ public Map getInfo(Throwable t) { AxisFault e = (AxisFault)t; Map info = new HashMap(); info.put("Fault", e.getFaultString()); info.put("Fault Code", e.getFaultCode().toString()); info.put("Fault Actor", e.getFaultActor()); info.put("Fault Node", e.getFaultNode()); info.put("Fault Reason", e.getFaultReason()); info.put("Fault Role", e.getFaultRole()); info.put("Fault Dump", e.dumpToString()); // Todo Do we need to out put headers and elements or are these part of the // dumpToString?? return info; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -