This commit is contained in:
ErickSkrauch
2019-04-01 16:04:08 +02:00
commit 7211fbc190
30 changed files with 4562 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace Ely\Mojang\Exception;
use GuzzleHttp\Exception\RequestException;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
class NoContentException extends RequestException implements MojangApiException {
public function __construct(RequestInterface $request, ResponseInterface $response) {
parent::__construct('No data were received in the response.', $request, $response);
}
}