📄 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 + -