📄 locationexception.java
字号:
package javax.microedition.location;/** * The LocationException is thrown when a location API specific error has * occurred. The detailed conditions when this exception is thrown are * documented in the methods that throw this exception. */public class LocationException extends Exception { /** * Constructs a LocationException with no detail message. */ public LocationException() { } /** * Constructs a LocationException with the specified detail message. * @param s the detail message */ public LocationException(String s) { super(s); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -