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

org.craftercms.security.exception.rememberme.RememberMeException Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
package org.craftercms.security.exception.rememberme;

import org.craftercms.security.exception.AuthenticationException;

/**
 * Root exception for remember me related errors.
 *
 * @author avasquez
 */
public class RememberMeException extends AuthenticationException {

    public RememberMeException(String s) {
        super(s);
    }

    public RememberMeException(String s, Throwable throwable) {
        super(s, throwable);
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy