blob: 883515a5fb30a3d612dcd7e12e2df6264bf5ac79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.views;
import org.eclipse.debug.core.DebugException;
/**
* A plugable exception handler.
*/
public interface IDebugExceptionHandler {
/**
* Handles the given debug exception.
*
* @param e debug exception
*/
void handleException(DebugException e);
}