/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.runtime.core.api.lifecycle; import org.mule.runtime.api.i18n.I18nMessage; import org.mule.runtime.api.lifecycle.Initialisable; import org.mule.runtime.api.lifecycle.InitialisationException; /** * <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(I18nMessage message, Initialisable object) { super(message, object); } /** * @param message the exception message * @param cause the exception that cause this exception to be thrown */ public RecoverableException(I18nMessage message, Initialisable object, Throwable cause) { super(message, cause, object); } }