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

com.plaid.client.exception.PlaidMfaException Maven / Gradle / Ivy

There is a newer version: 29.0.0
Show newest version
package com.plaid.client.exception;

import com.plaid.client.response.MfaResponse;

public class PlaidMfaException extends RuntimeException {

    private MfaResponse mfaResponse;
    private int httpStatusCode;

    public PlaidMfaException(MfaResponse mfaResponse, int httpStatusCode) {
        this.mfaResponse = mfaResponse;
        this.httpStatusCode = httpStatusCode;
    }

    public MfaResponse getMfaResponse() {
        return mfaResponse;
    }
    
    public int getHttpStatusCode() {
		return httpStatusCode;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy