File indexing completed on 2025-01-19 05:21:02

0001 <?php
0002 /**
0003  * Zend Framework
0004  *
0005  * LICENSE
0006  *
0007  * This source file is subject to the new BSD license that is bundled
0008  * with this package in the file LICENSE.txt.
0009  * It is also available through the world-wide-web at this URL:
0010  * http://framework.zend.com/license/new-bsd
0011  * If you did not receive a copy of the license and are unable to
0012  * obtain it through the world-wide-web, please send an email
0013  * to license@zend.com so we can send you a copy immediately.
0014  *
0015  * @category   Zend
0016  * @package    Zend_Db
0017  * @subpackage Adapter
0018  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0019  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0020  * @version    $Id$
0021  */
0022 
0023 /**
0024  * @see Zend_Db_Adapter_Exception
0025  */
0026 // require_once 'Zend/Db/Adapter/Exception.php';
0027 
0028 /**
0029  * Zend_Db_Adapter_Sqlsrv_Exception
0030  *
0031  * @category   Zend
0032  * @package    Zend_Db
0033  * @subpackage Adapter
0034  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0035  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0036  */
0037 class Zend_Db_Adapter_Sqlsrv_Exception extends Zend_Db_Adapter_Exception
0038 {
0039     /**
0040      * Constructor
0041      *
0042      * If $message is an array, the assumption is that the return value of
0043      * sqlsrv_errors() was provided. If so, it then retrieves the most recent
0044      * error from that stack, and sets the message and code based on it.
0045      *
0046      * @param null|array|string $message
0047      * @param null|int $code
0048      */
0049     public function __construct($message = null, $code = 0)
0050     {
0051        if (is_array($message)) {
0052             // Error should be array of errors
0053             // We only need first one (?)
0054             if (isset($message[0])) {
0055                 $message = $message[0];
0056             }
0057 
0058             $code    = (int)    $message['code'];
0059             $message = (string) $message['message'];
0060        }
0061        parent::__construct($message, $code, new Exception($message, $code));
0062    }
0063 }