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

org.craftercms.security.exception.rememberme.InvalidCookieException 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 provided has an invalid format.
 * 
 * @author avasquez
 */
public class InvalidCookieException extends RememberMeException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy