All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yiuman.citrus.security.verify.sms.MobileNotFoundException Maven / Gradle / Ivy

package com.github.yiuman.citrus.security.verify.sms;

import org.springframework.security.core.AuthenticationException;

/**
 * @author yiuman
 * @date 2020/3/22
 */
public class MobileNotFoundException extends AuthenticationException {

    public MobileNotFoundException(String msg, Throwable t) {
        super(msg, t);
    }

    public MobileNotFoundException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy