You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
417 B

package com.stone.conf.exception;
/**
* 用户未登录异常
*/
public class UserNotLoginException extends BusinessException {
private static final long serialVersionUID = -1879503946782379204L;
public UserNotLoginException() {
super();
}
public UserNotLoginException(String msg) {
super(msg);
}
public UserNotLoginException(String formatMsg, Object... objects) {
super(formatMsg, objects);
}
}