mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
2004-11-09 Alain Magloire
Throw not implemented exception for exception breakpoint
This commit is contained in:
parent
948da21d8e
commit
e6d2af3d71
3 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2004-11-09 Alain Magloire
|
||||||
|
Throw not implemented exception for exception breakpoint
|
||||||
|
|
||||||
2004-11-09 Alain Magloire
|
2004-11-09 Alain Magloire
|
||||||
Reverting the changes below, for PR 74496. After exchanging with
|
Reverting the changes below, for PR 74496. After exchanging with
|
||||||
the Palm folks, it was not fixing the problem.
|
the Palm folks, it was not fixing the problem.
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
cdi.Common.No_answer=No answer
|
cdi.Common.No_answer=No answer
|
||||||
|
cdi.Common.Not_implemented=Not Implemented
|
||||||
cdi.SourceManager.Unknown_type=Unknown type
|
cdi.SourceManager.Unknown_type=Unknown type
|
||||||
cdi.RegisterManager.Wrong_register_type=Wrong register type
|
cdi.RegisterManager.Wrong_register_type=Wrong register type
|
||||||
cdi.BreakpointManager.Not_a_CDT_breakpoint=Not a CDT breakpoint
|
cdi.BreakpointManager.Not_a_CDT_breakpoint=Not a CDT breakpoint
|
||||||
|
|
|
@ -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.ICDICondition;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDILocation;
|
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.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.ICDIExpression;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIInstruction;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDIInstruction;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
|
||||||
|
@ -734,10 +735,10 @@ public class Target extends SessionObject implements ICDITarget {
|
||||||
bMgr.deleteAllBreakpoints(this);
|
bMgr.deleteAllBreakpoints(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// public ICDIExceptionBreakpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch)
|
public ICDIExceptionpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch)
|
||||||
// throws CDIException {
|
throws CDIException {
|
||||||
// throw new CDIException("Not Implemented"); //$NON-NLS-1$
|
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)
|
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#createCondition(int, java.lang.String, String)
|
||||||
|
|
Loading…
Add table
Reference in a new issue