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 + -
显示快捷键?