13 lines
228 B
PHP
13 lines
228 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXC\Http\Exception;
|
|
|
|
/**
|
|
* Exception thrown when a suspicious operation is detected (e.g., invalid host).
|
|
*/
|
|
class SuspiciousOperationException extends \UnexpectedValueException
|
|
{
|
|
}
|