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

org.nofdev.http.oauth2.AuthenticationException.groovy Maven / Gradle / Ivy

package org.nofdev.http.oauth2
/**
 * Created by Liutengfei on 2016/4/21 0021.
 */
class AuthenticationException extends RuntimeException {

    AuthenticationException() {
    }

    AuthenticationException(String message) {
        super(message)
    }

    AuthenticationException(String message, Throwable cause) {
        super(message, cause)
    }

    AuthenticationException(Throwable cause) {
        super(cause)
    }

    protected AuthenticationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy