web/lib/Zend/Cloud/Exception.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    12  * obtain it through the world-wide-web, please send an email
    12  * obtain it through the world-wide-web, please send an email
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Cloud
    16  * @package    Zend_Cloud
    17  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    17  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  */
    19  */
    20 
    20 
    21 
    21 
    22 /**
    22 /**
    26 
    26 
    27 
    27 
    28 /**
    28 /**
    29  * @category   Zend
    29  * @category   Zend
    30  * @package    Zend_Cloud
    30  * @package    Zend_Cloud
    31  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    31  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    33  */
    33  */
    34 class Zend_Cloud_Exception extends Zend_Exception
    34 class Zend_Cloud_Exception extends Zend_Exception
    35 { 
    35 {
    36     /**
    36     /**
    37      * Exception for the underlying adapter
    37      * Exception for the underlying adapter
    38      * 
    38      *
    39      * @var Exception
    39      * @var Exception
    40      */
    40      */
    41     protected $_clientException;
    41     protected $_clientException;
    42     
    42 
    43     public function __construct($message, $code = 0, $clientException = null) 
    43     public function __construct($message, $code = 0, $clientException = null)
    44     {
    44     {
    45         $this->_clientException = $clientException;
    45         $this->_clientException = $clientException;
    46         parent::__construct($message, $code, $clientException);
    46         parent::__construct($message, $code, $clientException);
    47     }
    47     }
    48 
    48