| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Database/Schema/Exception/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Database/Schema/Exception/StatementException.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Database\Schema\Exception;
/**
* Class StatementException
*/
class StatementException extends \Exception
{
public static function sqlError(string $sql): StatementException
{
return new self($sql, 1471504820);
}
/**
* @param \Exception|null $previous
*/
public static function syntaxError(string $message, \Exception $previous = null): StatementException
{
return new self('[SQL Error] ' . $message, 1471504821, $previous);
}
/**
* @param \Exception|null $previous
*/
public static function semanticalError(string $message, \Exception $previous = null): StatementException
{
return new self('[Semantical Error] ' . $message, 1471504822, $previous);
}
}