📄 exceptionhandler.java
字号:
/* * Copyright (c) 2003, The Regents of the University of California, through * Lawrence Berkeley National Laboratory (subject to receipt of any required * approvals from the U.S. Dept. of Energy). All rights reserved. */package gov.lbl.dsd.sea;/** * Callback invoked if a {@link RuntimeException} is raised within * {@link EventHandler#handle(Object)} of the given source stage. * * @author whoschek@lbl.gov * @author $Author: hoschek3 $ * @version $Revision: 1.1 $, $Date: 2004/07/22 01:31:04 $ */public interface ExceptionHandler { /** * Called if a {@link RuntimeException} is raised within * {@link EventHandler#handle(Object)} of the given source stage. * * @param cause * the causing exception * @param causingEvent * the event that caused the exception. * @param source * the stage that could not properly handle the causing event. */ public void onException(RuntimeException cause, Object causingEvent, Stage source); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -