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 Statement
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_Statement_Exception
0025  */
0026 // require_once 'Zend/Db/Statement/Exception.php';
0027 
0028 /**
0029  * @package    Zend_Db
0030  * @subpackage Statement
0031  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0032  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0033  */
0034 class Zend_Db_Statement_Sqlsrv_Exception extends Zend_Db_Statement_Exception
0035 {
0036     /**
0037      * Constructor
0038      *
0039      * If $message is an array, the assumption is that the return value of
0040      * sqlsrv_errors() was provided. If so, it then retrieves the most recent
0041      * error from that stack, and sets the message and code based on it.
0042      *
0043      * @param null|array|string $message
0044      * @param null|int $code
0045      */
0046     public function __construct($message = null, $code = 0)
0047     {
0048        if (is_array($message)) {
0049             // Error should be array of errors
0050             // We only need first one (?)
0051             if (isset($message[0])) {
0052                 $message = $message[0];
0053             }
0054 
0055             $code    = (int)    $message['code'];
0056             $message = (string) $message['message'];
0057        }
0058        parent::__construct($message, $code);
0059    }
0060 }
0061