j2wapexception.java
来自「一个用 java写的wap浏览器 对于浏览器感兴趣起的可以看看咯」· Java 代码 · 共 37 行
JAVA
37 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?