File "DBALException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
File size: 5.96 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\DBAL\Driver\DriverException as DeprecatedDriverException;
use MailPoetVendor\Doctrine\DBAL\Driver\ExceptionConverterDriver;
use MailPoetVendor\Doctrine\DBAL\Exception\DriverException;
use MailPoetVendor\Doctrine\DBAL\Platforms\AbstractPlatform;
use MailPoetVendor\Doctrine\DBAL\Types\Type;
use Throwable;
use function array_map;
use function bin2hex;
use function get_class;
use function gettype;
use function implode;
use function is_object;
use function is_resource;
use function is_string;
use function json_encode;
use function preg_replace;
use function spl_object_hash;
use function sprintf;
class DBALException extends \Exception
{
 public static function notSupported($method)
 {
 return new Exception(sprintf("Operation '%s' is not supported by platform.", $method));
 }
 public static function invalidPlatformSpecified() : self
 {
 return new Exception("Invalid 'platform' option specified, need to give an instance of " . AbstractPlatform::class . '.');
 }
 public static function invalidPlatformType($invalidPlatform) : self
 {
 if (is_object($invalidPlatform)) {
 return new Exception(sprintf("Option 'platform' must be a subtype of '%s', instance of '%s' given", AbstractPlatform::class, get_class($invalidPlatform)));
 }
 return new Exception(sprintf("Option 'platform' must be an object and subtype of '%s'. Got '%s'", AbstractPlatform::class, gettype($invalidPlatform)));
 }
 public static function invalidPlatformVersionSpecified($version, $expectedFormat)
 {
 return new Exception(sprintf('Invalid platform version "%s" specified. ' . 'The platform version has to be specified in the format: "%s".', $version, $expectedFormat));
 }
 public static function invalidPdoInstance()
 {
 return new Exception("The 'pdo' option was used in DriverManager::getConnection() but no " . 'instance of PDO was given.');
 }
 public static function driverRequired($url = null)
 {
 if ($url) {
 return new Exception(sprintf("The options 'driver' or 'driverClass' are mandatory if a connection URL without scheme " . 'is given to DriverManager::getConnection(). Given URL: %s', $url));
 }
 return new Exception("The options 'driver' or 'driverClass' are mandatory if no PDO " . 'instance is given to DriverManager::getConnection().');
 }
 public static function unknownDriver($unknownDriverName, array $knownDrivers)
 {
 return new Exception("The given 'driver' " . $unknownDriverName . ' is unknown, ' . 'Doctrine currently supports only the following drivers: ' . implode(', ', $knownDrivers));
 }
 public static function driverExceptionDuringQuery(Driver $driver, Throwable $driverEx, $sql, array $params = [])
 {
 $msg = "An exception occurred while executing '" . $sql . "'";
 if ($params) {
 $msg .= ' with params ' . self::formatParameters($params);
 }
 $msg .= ":\n\n" . $driverEx->getMessage();
 return self::wrapException($driver, $driverEx, $msg);
 }
 public static function driverException(Driver $driver, Throwable $driverEx)
 {
 return self::wrapException($driver, $driverEx, 'An exception occurred in driver: ' . $driverEx->getMessage());
 }
 private static function wrapException(Driver $driver, Throwable $driverEx, string $msg)
 {
 if ($driverEx instanceof DriverException) {
 return $driverEx;
 }
 if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DeprecatedDriverException) {
 return $driver->convertException($msg, $driverEx);
 }
 return new Exception($msg, 0, $driverEx);
 }
 private static function formatParameters(array $params)
 {
 return '[' . implode(', ', array_map(static function ($param) {
 if (is_resource($param)) {
 return (string) $param;
 }
 $json = @json_encode($param);
 if (!is_string($json) || $json === 'null' && is_string($param)) {
 // JSON encoding failed, this is not a UTF-8 string.
 return sprintf('"%s"', preg_replace('/.{2}/', '\\x$0', bin2hex($param)));
 }
 return $json;
 }, $params)) . ']';
 }
 public static function invalidWrapperClass($wrapperClass)
 {
 return new Exception("The given 'wrapperClass' " . $wrapperClass . ' has to be a ' . 'subtype of \\Doctrine\\DBAL\\Connection.');
 }
 public static function invalidDriverClass($driverClass)
 {
 return new Exception("The given 'driverClass' " . $driverClass . ' has to implement the ' . Driver::class . ' interface.');
 }
 public static function invalidTableName($tableName)
 {
 return new Exception('Invalid table name specified: ' . $tableName);
 }
 public static function noColumnsSpecifiedForTable($tableName)
 {
 return new Exception('No columns specified for table ' . $tableName);
 }
 public static function limitOffsetInvalid()
 {
 return new Exception('Invalid Offset in Limit Query, it has to be larger than or equal to 0.');
 }
 public static function typeExists($name)
 {
 return new Exception('Type ' . $name . ' already exists.');
 }
 public static function unknownColumnType($name)
 {
 return new Exception('Unknown column type "' . $name . '" requested. Any Doctrine type that you use has ' . 'to be registered with \\Doctrine\\DBAL\\Types\\Type::addType(). You can get a list of all the ' . 'known types with \\Doctrine\\DBAL\\Types\\Type::getTypesMap(). If this error occurs during database ' . 'introspection then you might have forgotten to register all database types for a Doctrine Type. Use ' . 'AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement ' . 'Type#getMappedDatabaseTypes(). If the type name is empty you might ' . 'have a problem with the cache or forgot some mapping information.');
 }
 public static function typeNotFound($name)
 {
 return new Exception('Type to be overwritten ' . $name . ' does not exist.');
 }
 public static function typeNotRegistered(Type $type) : self
 {
 return new Exception(sprintf('Type of the class %s@%s is not registered.', get_class($type), spl_object_hash($type)));
 }
 public static function typeAlreadyRegistered(Type $type) : self
 {
 return new Exception(sprintf('Type of the class %s@%s is already registered.', get_class($type), spl_object_hash($type)));
 }
}