File "InvalidResponseException.php"
Full Path: /home/cananyalcin/public_html/core/lib/coinbase/coinbase-commerce/src/Exceptions/InvalidResponseException.php
File size: 246 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace CoinbaseCommerce\Exceptions;
class InvalidResponseException extends CoinbaseException
{
public function __construct($message = '', $body = '')
{
parent::__construct($message);
$this->body = $body;
}
}