Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
backwpup
/
inc
/
//home/puskom/mastur/backwpup/inc/class-destination-dropbox-api-request-exception.php
<?php /** * Exception thrown when there is an error in the Dropbox request. */ class BackWPup_Destination_Dropbox_API_Request_Exception extends BackWPup_Destination_Dropbox_API_Exception { /** * @var string[]|null */ protected $error; /** * @param string[]|null $error */ public function __construct(string $message, int $code = 0, ?Exception $previous = null, ?array $error = null) { $this->error = $error; parent::__construct($message, $code, $previous); } public function getError(): ?array { return $this->error; } }