astehlik/typo3-extension-mediaoembed

View on GitHub
Classes/Exception/HttpClientRequestException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Sto\Mediaoembed\Exception;

use RuntimeException;
use Throwable;

class HttpClientRequestException extends RuntimeException
{
    public function __construct(string $message, int $httpCode, ?Throwable $previous = null)
    {
        parent::__construct($message, $httpCode, $previous);
    }
}