官术网_书友最值得收藏!

Time for action – catching exceptions

Although it's easy to put a breakpoint in the catch block, this is merely the location where the failure was ultimately caught, not where it was caused. The place where it was caught can often be in a completely different plug-in from where it was raised, and depending on the amount of information encoded within the exception (particularly if it has been transliterated into a different exception type) may hide the original source of the problem. Fortunately, Eclipse can handle such cases with a Java Exception Breakpoint.

  1. Introduce a bug into the execute method of the SampleHandler class, by adding the following just before the MessageDialog.openInformation() call:
    window = null;
    
  2. Click on the hello world icon.
  3. Nothing will appear to happen in the target Eclipse, but in the Console view of the host Eclipse instance, the error message should be seen:
    Caused by: java.lang.NullPointerException
     at com.packtpub.e4.hello.ui.handlers.SampleHandler.execute
     at org.eclipse.ui.internal.handlers.HandlerProxy.execute
     at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute
    
  4. Create a Java Exception Breakpoint in the Breakpoints view of the Debug perspective. The Add Java Exception Breakpoint dialog will be shown:
  5. Enter NullPointerException in the search dialog, and click on OK.
  6. Click on the hello world icon, and the debugger will stop at the line where the exception is thrown, instead of where it is caught:

What just happened?

The Java Exception Breakpoint stops when an exception is thrown, not when it is caught. The dialog asks for a single exception class to catch, and by default, the wizard has been pre-filled with any class whose name includes *Exception*. However, any name (or filter) can be typed into the search box, including abbreviations such as FNFE for FileNotFoundException. Wildcard patterns can also be used, which allows searching for Nu*Ex or *Unknown*.

By default, the exception breakpoint corresponds to instances of that specific class. This is useful (and quick) for exceptions such as NullPointerException, but not so useful for ones with an extensive class hierarchy, such as IOException. In this case, there is a checkbox visible on the breakpoint properties and at the bottom of the breakpoints view, which allows the capture of all Subclasses of this exception, not just of the specific class.

There are also two other checkboxes that say whether the debugger should stop when the exception is Caught or Uncaught. Both of these are selected by default; if both are deselected, then the breakpoint effectively becomes disabled. Caught means that the exception is thrown in a corresponding try/catch block, and Uncaught means that the exception is thrown without a try/catch block (this bubbles up to the method's caller).

主站蜘蛛池模板: 花莲市| 盘山县| 霸州市| 仪陇县| 师宗县| 司法| 新乐市| 抚松县| 平南县| 哈尔滨市| 图们市| 扶风县| 青岛市| 衡水市| 新野县| 洱源县| 壶关县| 安阳县| 乐业县| 宁强县| 阆中市| 秦安县| 黄梅县| 成武县| 泗水县| 临夏县| 淳化县| 凌云县| 鸡西市| 留坝县| 蓝田县| 微山县| 霍城县| 邵阳市| 定西市| 晋州市| 信阳市| 洛川县| 定州市| 茌平县| 南雄市|