locationexception.java

来自「j2me的1套UI框架,可以帮助开发者迅速的开发j2me应用程序.」· Java 代码 · 共 21 行

JAVA
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?