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

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

There is a newer version: 1.14.0
Show newest version
package com.paypal.base.exception;

/**
 * SSLConfigurationException is thrown for error caused during SSL connection
 * 
 */
public class SSLConfigurationException extends BaseException {

	/**
	 * Serial version UID
	 */
	private static final long serialVersionUID = -2345834567387658303L;

	public SSLConfigurationException(String message) {
		super(message);
	}

	public SSLConfigurationException(String message, Throwable exception) {
		super(message, exception);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy