1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

2004-11-09 Alain Magloire

Throw not implemented exception for exception breakpoint
This commit is contained in:
Alain Magloire 2004-11-09 20:40:14 +00:00
parent 948da21d8e
commit e6d2af3d71
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,6 @@
2004-11-09 Alain Magloire
Throw not implemented exception for exception breakpoint
2004-11-09 Alain Magloire
Reverting the changes below, for PR 74496. After exchanging with
the Palm folks, it was not fixing the problem.

View file

@ -10,6 +10,7 @@
###############################################################################
cdi.Common.No_answer=No answer
cdi.Common.Not_implemented=Not Implemented
cdi.SourceManager.Unknown_type=Unknown type
cdi.RegisterManager.Wrong_register_type=Wrong register type
cdi.BreakpointManager.Not_a_CDT_breakpoint=Not a CDT breakpoint

View file

@ -18,6 +18,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDICondition;
import org.eclipse.cdt.debug.core.cdi.ICDILocation;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
import org.eclipse.cdt.debug.core.cdi.model.ICDIInstruction;
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
@ -734,10 +735,10 @@ public class Target extends SessionObject implements ICDITarget {
bMgr.deleteAllBreakpoints(this);
}
// public ICDIExceptionBreakpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch)
// throws CDIException {
// throw new CDIException("Not Implemented"); //$NON-NLS-1$
//}
public ICDIExceptionpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch)
throws CDIException {
throw new CDIException(CdiResources.getString("cdi.Common.Not_implemented")); //$NON-NLS-1$
}
/*
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#createCondition(int, java.lang.String, String)