wrongdateformatexception.java

来自「航空定票系统:户端功能模块:用户登录模块」· Java 代码 · 共 14 行

JAVA
14 行
字号
package com.tarena.abs.model;

public class WrongDateFormatException extends RuntimeException{
	private String message;
	private static final long serialVersionUID = 828135671490238L;
	public WrongDateFormatException(String message){
		this.message=message;
	}
	public String toString(){
		return "WrongDateFormatException:"+message;
	}

}

⌨️ 快捷键说明

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