com.worldpay.cse.exception.WPCSEException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cse-android-sdk Show documentation
Show all versions of cse-android-sdk Show documentation
Android SDK is a library created to help you integrate Worldpay client side encryption into your mobile applications.
package com.worldpay.cse.exception;
/**
* Generic exception for WorldpayCSE SDK
*/
public class WPCSEException extends RuntimeException {
public WPCSEException(String displayMessage) {
super(displayMessage);
}
public WPCSEException(String displayMessage, Throwable cause) {
super(displayMessage, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy