bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
13 lines (12 loc) • 342 B
TypeScript
export declare class BitPayException implements Error {
readonly message: string;
readonly name: string;
readonly stack: string;
/**
* Construct the BitPayException.
*
* @param message string [optional] The Exception message to throw.
*/
constructor(message: string);
}
export default BitPayException;