2023-03-22 19:54:03 +00:00
|
|
|
<?php
|
|
|
|
|
2023-10-15 02:20:21 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-03-22 19:54:03 +00:00
|
|
|
namespace OCA\Memories;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
|
|
|
|
class HttpResponseException extends \Exception
|
|
|
|
{
|
2023-10-15 01:51:17 +00:00
|
|
|
public function __construct(public Http\Response $response) {}
|
2023-03-22 19:54:03 +00:00
|
|
|
}
|