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

com.worldpay.cse.exception.WPCSEInvalidPublicKey Maven / Gradle / Ivy

Go to download

Android SDK is a library created to help you integrate Worldpay client side encryption into your mobile applications.

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