![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.exception.InvalidRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
The newest version!
package com.twilio.sdk.exception;
public class InvalidRequestException extends TwilioException {
private static final long serialVersionUID = 1L;
private final String param;
public InvalidRequestException(final String message, final String param, final Throwable cause) {
super(message, cause);
this.param = param;
}
public String getParam() {
return param;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy