SpringMVC-提高篇-UerExcep.java

来源:互联网 发布:论文参考文献来自网络 编辑:程序博客网 时间:2024/04/28 18:17
package net.jbit.entity;


public class UserException extends RuntimeException {


/**

*/
private static final long serialVersionUID = 1L;


public UserException() {
super();
// TODO Auto-generated constructor stub
}


public UserException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}


public UserException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}


public UserException(String message) {
super(message);
// TODO Auto-generated constructor stub
}


public UserException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}



}
0 0
原创粉丝点击