com.bitpay.sdk.exceptions.BitPayException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
/*
* 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);
}
}