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

com.bitpay.sdk.exceptions.BitPayException Maven / Gradle / Ivy

Go to download

Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically Secure RESTful API.

The newest version!
/*
 * Copyright (c) 2019 BitPay.
 * All rights reserved.
 */

package com.bitpay.sdk.exceptions;

/**
 * General BitPay Exception which is inherited by all other exceptions.
 *
 * @see Rest API Error Codes
 */
public class BitPayException extends Exception {

    private static final long serialVersionUID = -5407556346434827903L;

    /**
     * Construct the BitPayException.
     *
     * @param message String [optional] The Exception message.
     */
    public BitPayException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy