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

org.rootservices.otter.security.csrf.exception.CsrfException Maven / Gradle / Ivy

package org.rootservices.otter.security.csrf.exception;

/**
 * Created by tommackenzie on 4/9/16.
 */
public class CsrfException extends Exception {
    public CsrfException(String message) {
        super(message);
    }

    public CsrfException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy