File indexing completed on 2024-06-23 05:55: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_Amf
0017  * @subpackage Value
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 /** @see Zend_Amf_Value_Messaging_AcknowledgeMessage */
0024 // require_once 'Zend/Amf/Value/Messaging/AcknowledgeMessage.php';
0025 
0026 /**
0027  * Creates the error message to report to flex the issue with the call
0028  *
0029  * Corresponds to flex.messaging.messages.ErrorMessage
0030  *
0031  * @package    Zend_Amf
0032  * @subpackage Value
0033  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0034  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0035  */
0036 class Zend_Amf_Value_Messaging_ErrorMessage extends Zend_Amf_Value_Messaging_AcknowledgeMessage
0037 {
0038     /**
0039      * Additional data with error
0040      * @var object
0041      */
0042     public $extendedData = null;
0043 
0044     /**
0045      * Error code number
0046      * @var string
0047      */
0048     public $faultCode;
0049 
0050     /**
0051      * Description as to the cause of the error
0052      * @var string
0053      */
0054     public $faultDetail;
0055 
0056     /**
0057      * Short description of error
0058      * @var string
0059      */
0060     public $faultString = '';
0061 
0062     /**
0063      * root cause of error
0064      * @var object
0065      */
0066     public $rootCause = null;
0067 }