blob: 6aa2f21db38e3631ca920b8bc3934f1ec6979451 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDICatchEvent;
/**
*
* Represents a catchpoint.
*
* @since Jul 9, 2002
*/
public interface ICDICatchpoint extends ICDIBreakpoint {
/**
* Returns the catch event for this catchpoint.
*
* @return the catch event for this catchpoint
* @throws CDIException if this method fails. Reasons include:
*/
ICDICatchEvent getEvent() throws CDIException;
}