?? j2wapexception.java
字號:
/*
* j2wap is distributed under the terms of the GNU Public License
*
* j2wap was written by:
*
* Scott Campbell
* Michael Nordling
* Karl Maftoum
* Julian Bright
*
* This was a final project for Comp.Engineering at the University of Canberra, Australia
*
* Now released as Open Source software. 28 November 2000
*
* Email: k_maftoum@hotmail.com for more info
*
* Use entirely at your own risk.
*/
/**
* Title: J2wapException
* Description: A general exception class to be used by classes in
* WAE, NET and UI pakages.
* Company: J2wap.com
* @author: Scott campbell
* @version 1.1
*/
package wae;
public class J2WapException extends Exception
{
public J2WapException (String in_msg)
{
super (in_msg);
} // J2WapException
} // class J2WapException
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -