blob: 428b2d36a603fdcd9028a5a58e9c7202c7bd1e7d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.exception;
import org.eclipse.jpt.common.utility.exception.ExceptionHandler;
/**
* An exception handler that forwards exceptions to a collection of other
* exception handlers.
*/
public class CompositeExceptionHandler
extends AbstractCompositeExceptionHandler<ExceptionHandler>
{
public CompositeExceptionHandler() {
super();
}
public CompositeExceptionHandler(ExceptionHandler... exceptionHandlers) {
super(exceptionHandlers);
}
public CompositeExceptionHandler(Iterable<? extends ExceptionHandler> exceptionHandlers) {
super(exceptionHandlers);
}
}