BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
cryptomus
/
api-php-sdk
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: RequestBuilderException.php
<?php namespace Cryptomus\Api; final class RequestBuilderException extends \Exception { /** * @var string */ private $method; /** * @var array */ private $errors; /** * @param string $message * @param int $responseCode * @param string $uri * @param null|mixed $previous */ public function __construct($message, $responseCode, $uri, $errors = [], $previous = null) { $this->method = $uri; $this->errors = $errors; parent::__construct($message, $responseCode, $previous); } /** * @return string */ public function getMethod() { return $this->method; } /** * @return array */ public function getErrors() { return $this->errors; } }
Save
Cancel