?? locationexception.java
字號:
package org.j4me.bluetoothgps;
/**
* The <code>LocationException</code> 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 <code>LocationException</code> with the specified detail message.
*
* @param message - the detailed exception message.
*/
public LocationException (String message)
{
super(message);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -