for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Tools;
use Doctrine\ORM\ORMException;
use Throwable;
/**
* Tools related Exceptions.
*/
class ToolsException extends ORMException
{
public static function schemaToolFailure(string $sql, Throwable $e) : self
return new self("Schema-Tool failed with Error '" . $e->getMessage() . "' while executing DDL: " . $sql, 0, $e);
}