transysexception.java

来自「基于wml的手机余额查询系统」· Java 代码 · 共 30 行

JAVA
30
字号
package org.wap.util;

/**
 * Created by IntelliJ IDEA.
 * User: tyrones
 * Date: 2003-8-8
 * Time: 17:31:30
 * 
 */
public class TranSysException extends RuntimeException {

    /**
     * Constructor
     * @param str    a string that explains what the exception condition is
     */
    public TranSysException(String str) {
        super(str);
    }

    /**
     * Default constructor. Takes no arguments
     */
    public TranSysException() {
        super();
    }

}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?