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

com.paypal.base.exception.InvalidResponseDataException Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
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