fatcode/http-server

View on GitHub
src/Exception/HttpException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace FatCode\HttpServer\Exception;

use Psr\Http\Message\ResponseInterface;
use RuntimeException;

abstract class HttpException extends RuntimeException implements HttpServerException
{
    abstract public function toResponse() : ResponseInterface;
}