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

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

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

/**
 * Thrown when a remember me cookie has been possibly stolen and is being used.
 *
 * @author avasquez
 */
public class CookieTheftException extends RememberMeException {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy