12 lines
141 B
PHP
12 lines
141 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class UndefinedOption extends RuntimeException
|
|
{
|
|
}
|