welcome back to dyb-tech

This commit is contained in:
Daniel Guzman
2024-05-18 02:28:01 +02:00
parent 9513cdba09
commit 9f30bc98c7
6149 changed files with 668407 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Tools;
use Doctrine\ORM\Exception\ORMException;
use Throwable;
use function sprintf;
/**
* 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
);
}
/**
* @param string $type
*
* @return ToolsException
*/
public static function couldNotMapDoctrine1Type($type)
{
return new self(sprintf("Could not map doctrine 1 type '%s'!", $type));
}
}