recoverableexception.java

来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 43 行

JAVA
43
字号
/* * $Id: RecoverableException.java 10885 2008-02-19 16:19:59Z tcarlson $ * -------------------------------------------------------------------------------------- * 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.api.lifecycle;import org.mule.config.i18n.Message;/** * <code>RecoverableException</code> can be thrown during initialisation to * indicate that the error occurred is not fatal and a reactive action can be * performed to try and remedy the error. The most common example would be a * Connector failing to connect due to a JVM_BIND exception. */public class RecoverableException extends InitialisationException{    /** Serial version */    private static final long serialVersionUID = -5799024626172482665L;    /** @param message the exception message */    public RecoverableException(Message message, Initialisable object)    {        super(message, object);    }    /**     * @param message the exception message     * @param cause   the exception that cause this exception to be thrown     */    public RecoverableException(Message message, Initialisable object, Throwable cause)    {        super(message, cause, object);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?