package com.cl.common.exception.user; import com.cl.common.exception.BaseException; /** * 登录失败 */ public class LoginErrorException extends BaseException { public LoginErrorException(){} public LoginErrorException(String msg){ super(msg); } }