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

jp.webpay.exception.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package jp.webpay.exception;

import lombok.NonNull;

import java.util.Map;

public class AuthenticationException extends WebPayException {
    AuthenticationException(int status, @NonNull Map errorInfo) {
        super(errorInfo.get("message"), status, errorInfo);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy