53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Doctrine\DBAL\Driver;
 | |
| 
 | |
| /**
 | |
|  * Tiny wrapper for PDOException instances to implement the {@link DriverException} interface.
 | |
|  */
 | |
| class PDOException extends \PDOException implements DriverException
 | |
| {
 | |
|     /**
 | |
|      * The driver specific error code.
 | |
|      *
 | |
|      * @var int|string|null
 | |
|      */
 | |
|     private $errorCode;
 | |
| 
 | |
|     /**
 | |
|      * The SQLSTATE of the driver.
 | |
|      *
 | |
|      * @var string|null
 | |
|      */
 | |
|     private $sqlState;
 | |
| 
 | |
|     /**
 | |
|      * @param \PDOException $exception The PDO exception to wrap.
 | |
|      */
 | |
|     public function __construct(\PDOException $exception)
 | |
|     {
 | |
|         parent::__construct($exception->getMessage(), 0, $exception);
 | |
| 
 | |
|         $this->code      = $exception->getCode();
 | |
|         $this->errorInfo = $exception->errorInfo;
 | |
|         $this->errorCode = $exception->errorInfo[1] ?? $exception->getCode();
 | |
|         $this->sqlState  = $exception->errorInfo[0] ?? $exception->getCode();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function getErrorCode()
 | |
|     {
 | |
|         return $this->errorCode;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function getSQLState()
 | |
|     {
 | |
|         return $this->sqlState;
 | |
|     }
 | |
| }
 | 
