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

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

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

/**
 * BaseException for SDK
 */
public class BaseException extends Exception {

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

	public BaseException(String msg) {
		super(msg);
	}

	public BaseException(String msg, Throwable exception) {
		super(msg, exception);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy