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