📄 abstractexceptionhandler.java
字号:
/* * $Id: AbstractExceptionHandler.java 10668 2008-02-01 15:10:52Z romikk $ * -------------------------------------------------------------------------------------- * 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.example.errorhandler;import java.util.HashMap;import java.util.Iterator;/** * <code>AbstractExceptionListener</code> TODO (document class) * */public abstract class AbstractExceptionHandler implements ExceptionHandler{ protected HashMap registry = new HashMap(); private String endpointName; protected ErrorManager errorManager = null; public void registerException(Class exceptionClass) { registry.put(exceptionClass, exceptionClass); } public Iterator getRegisteredClasses() { return registry.keySet().iterator(); } public void unRegisterException(Class exceptionClass) { registry.remove(exceptionClass); } public boolean isRegisteredFor(Class exceptionClass) { Class aClass = null; for (Iterator i = getRegisteredClasses(); i.hasNext();) { aClass = (Class)i.next(); if (aClass.isAssignableFrom(exceptionClass)) { return true; } } return false; } public void onException(ErrorMessage message) throws HandlerException { Throwable t = null; try { t = message.getException().toException(); } catch (Exception e) { throw new HandlerException(LocaleMessage.unretrievedException(e), e); } if (!isRegisteredFor(t.getClass())) { throw new HandlerException(LocaleMessage.unhandledException(t.getClass(), this.getClass())); } processException(message, t); } protected abstract void processException(ErrorMessage message, Throwable t) throws HandlerException; /** * @return Returns the errorManager. */ public ErrorManager getErrorManager() { return errorManager; } /** * @param errorManager The errorManager to set. */ public void setErrorManager(ErrorManager errorManager) { this.errorManager = errorManager; } /** * @return Returns the endpointName. */ public String getendpointName() { return endpointName; } /** * @param endpointName The endpointName to set. */ public void setEndpointName(String endpointName) { this.endpointName = endpointName; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -