baseexception.java

来自「一个黑白棋的源代码(尚未完成」· Java 代码 · 共 29 行

JAVA
29
字号
/* * BaseException.java * * Created on 2007-9-29, 10:49:34 * * To change this template, choose Tools | Templates * and open the template in the editor. */package org.yangcq.logic.exception;/** * * @author Administrator */public class BaseException extends Exception{    private String info;    public BaseException(String info)    {        this.info=info;    }    public String toString()    {        return this.info;    }    }

⌨️ 快捷键说明

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