phpmyadmin/src/Exceptions/UndefinedOption.php
Kamil Tekiela a47c9a7cf3 Throw exceptions instead of errors
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2024-03-13 17:15:33 +01:00

12 lines
141 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Exceptions;
use RuntimeException;
class UndefinedOption extends RuntimeException
{
}