25 lines
466 B
PHP
25 lines
466 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use Throwable;
|
||
|
|
||
|
class BackblazeRetryException extends \Exception
|
||
|
{
|
||
|
private $innerException;
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getInnerException()
|
||
|
{
|
||
|
return $this->innerException;
|
||
|
}
|
||
|
|
||
|
public function __construct($httpCode, \Exception $innerException)
|
||
|
{
|
||
|
parent::__construct('Backblaze requested to retry the request');
|
||
|
|
||
|
$this->innerException = $innerException;
|
||
|
}
|
||
|
}
|