phpmyadmin/libraries/classes/Exceptions/ExportException.php
Hugues Peccatte b3b8a84783 Replace fake loop by try/catch with exceptions
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2019-11-01 17:31:25 +01:00

22 lines
235 B
PHP

<?php
/**
* Export exception
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Exceptions;
use Exception;
/**
* Export exception
*
* @package PhpMyAdmin
*/
class ExportException extends Exception
{
}