com.worldpay.cse.exception.WPCSEInvalidPublicKey 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;
/**
* Invalid RSA public key exception
*/
public class WPCSEInvalidPublicKey extends WPCSEException {
public static final String INVALID_PUBLIC_KEY = "Invalid public key";
public WPCSEInvalidPublicKey() {
super(INVALID_PUBLIC_KEY);
}
public WPCSEInvalidPublicKey(Throwable cause) {
super(INVALID_PUBLIC_KEY, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy