phpmyadmin/libraries/classes/Exceptions/ExportException.php
Maurício Meneghini Fauth f80d3e3bd4 Remove unnecessary annotations
@package, @subpackage and others.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-20 17:35:56 -03:00

17 lines
182 B
PHP

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