Throws exception for invalid auth plugin instead of exiting. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
12 lines
141 B
PHP
12 lines
141 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class AuthenticationPluginException extends Exception
|
|
{
|
|
}
|