com.paypal.base.exception.InvalidResponseDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
package com.paypal.base.exception;
/**
* InvalidResponseException used to denote errors in response data
*
*/
public class InvalidResponseDataException extends BaseException {
/**
* Serial version UID
*/
private static final long serialVersionUID = -7489562847530985773L;
public InvalidResponseDataException(String msg) {
super(msg);
}
public InvalidResponseDataException(String msg, Throwable exception) {
super(msg, exception);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy