10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace KTXC\Http\Exception;
|
|
|
|
use KTXF\Exception\RuntimeException;
|
|
|
|
class UnexpectedValueException extends RuntimeException {}
|