com.twilio.exception.CertificateValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.exception;
import com.twilio.http.Request;
import com.twilio.http.Response;
public class CertificateValidationException extends TwilioException {
private final Request request;
private final Response response;
public CertificateValidationException(final String message, final Request request, final Response response) {
super(message);
this.request = request;
this.response = response;
}
public CertificateValidationException(final String message, final Request request) {
this(message, request, null);
}
public Request getRequest() { return this.request; }
public Response getResponse() { return this.response; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy