Editing: PayoutBatchQueryException.php
<?php namespace BitPaySDK\Exceptions; use Exception; class PayoutBatchQueryException extends PayoutBatchException { private $bitPayMessage = "Failed to retrieve payout batch"; private $bitPayCode = "BITPAY-PAYOUT-BATCH-GET"; /** * Construct the PayoutBatchQueryException. * * @param string $message [optional] The Exception message to throw. * @param int $code [optional] The Exception code to throw. * @param string $apiCode [optional] The API Exception code to throw. */ public function __construct($message = "", $code = 203, Exception $previous = null, $apiCode = "000000") { $message = $this->bitPayCode . ": " . $this->bitPayMessage . "-> " . $message; parent::__construct($message, $code, $previous, $apiCode); } }
Save
Back