mirror of
https://github.com/Neur0toxine/pock.git
synced 2024-12-04 18:56:05 +03:00
23 lines
376 B
PHP
23 lines
376 B
PHP
<?php
|
|
|
|
/**
|
|
* PHP 7.3
|
|
*
|
|
* @category PockRequestException
|
|
* @package Pock\Exception
|
|
*/
|
|
|
|
namespace Pock\Exception;
|
|
|
|
use Psr\Http\Client\RequestExceptionInterface;
|
|
|
|
/**
|
|
* Class PockRequestException
|
|
*
|
|
* @category PockRequestException
|
|
* @package Pock\Exception
|
|
*/
|
|
class PockRequestException extends AbstractRequestAwareException implements RequestExceptionInterface
|
|
{
|
|
}
|