fileexistexception.java

来自「自己用Java写的一个mp3文件改名的小工具」· Java 代码 · 共 25 行

JAVA
25
字号
/** *  Description of the Class * * @author     kilo * @created    2003年12月22日 */public class FileExistException		 extends Exception {	/**	 *  Constructor for the FileExistException object	 */	public FileExistException() { }	/**	 *  Constructor for the FileExistException object	 *	 * @param  message  Description of the Parameter	 */	public FileExistException( String message ) {		super( message );	}}

⌨️ 快捷键说明

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