Create Exception Breakpoint Filtering
Type name and package name filtering can be set up for Java exception breakpoints. This can be done from an exception breakpoints' Filtering properties page, as shown in the following figure.
Using the Filtering properties page there are four ways to add filtering for a Java exception breakpoint:
- You can select specific threads to restrict the breakpoint to (which must be done while in a debug session)
- You can use the Add Class button to select a class via the Type Selection Dialog
- You can use the Add Package button to select a package using a filtered Type Selection Dialog
- You can use the Add button to define your own pattern to match as a class and/or package filter
Defining Your Own Filter Pattern
Using the Add button mentioned above, you can define your own pattern to be used as a filter for a Java exception breakpoint. Once pressed, you can then
enter any expression in the new space in the Selected Locations list, as shown in the following figure.
There are some rules to follow when creating your own pattern.
- Your pattern can only contain a '*' at the end
- Your pattern must be fully qualified, E.g. a.b.c.MyClass
- Your pattern cannot have spaces in it
Examples
- a.b.c* - would match everything in the package a.b.c
- a.b.c.My* - would match anything in the a.b.c package that started with 'My'
- My* - would match anything in the default package that started with 'My'