blob: 3b040ef30e8bd989f5da269a3934729d4e9f0b6f [file] [log] [blame]
package org.eclipse.debug.internal.ui.views;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.debug.core.DebugException;
/**
* A plugable exception handler.
*/
public interface IDebugExceptionHandler {
/**
* Handles the given debug exception.
*
* @param e debug exception
*/
public abstract void handleException(DebugException e);
}