for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace InShore\Bookwhen\Exceptions;
use Exception;
use JsonException;
final class UnserializableResponse extends Exception
{
/**
* Creates a new Exception instance.
*/
public function __construct(JsonException $exception)
parent::__construct($exception->getMessage(), 0, $exception);
}