@package, @subpackage and others. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
17 lines
182 B
PHP
17 lines
182 B
PHP
<?php
|
|
/**
|
|
* Export exception
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Export exception
|
|
*/
|
|
class ExportException extends Exception
|
|
{
|
|
}
|