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

com.kanishka.net.exception.AuthenticationFailure Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.kanishka.net.exception;

/**
 *
 * @author [email protected]
 */
public class AuthenticationFailure extends Exception {

    public AuthenticationFailure() {
    }

    public AuthenticationFailure(String message) {
        super(message);
    }

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

    public AuthenticationFailure(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy