⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 locationexception.java

📁 j2me的1套UI框架,可以帮助开发者迅速的开发j2me应用程序.
💻 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 + -