spotterexception.java
来自「一个基于PlaceLab的室内和室外的智能导航系统」· Java 代码 · 共 23 行
JAVA
23 行
package org.placelab.spotter;/** * SpotterExceptions are thrown in response to various errors that * Spotters can encounter. It is meant to be subclassed to provide * more specific information. * <p> * Since a Spotter may not be operating in the same thread as the * rest of an application, SpotterExceptions are propagated using * the {@link SpotterListener#spotterExceptionThrown(Spotter, SpotterException)} * method, which can be delivered either in the background thread or by * using the EventSystem if one is registered with the Spotter. */public class SpotterException extends Exception { public SpotterException(String s) { super(s); } public SpotterException(Throwable t) { super(t.getMessage()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?