13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXC\Http\Exception;
|
|
|
|
/**
|
|
* Exception thrown when request headers conflict with each other.
|
|
*/
|
|
class ConflictingHeadersException extends \UnexpectedValueException
|
|
{
|
|
}
|