/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/webservice
NameSizeModeActions
index.php13750644editdlrm
SQLUtils.php37000644editdlrm
WebserviceException.php26560644editdlrm
WebserviceKey.php70430644editdlrm
WebserviceOutputBuilder.php328460644editdlrm
WebserviceOutputInterface.php20770644editdlrm
WebserviceOutputJSON.php60680644editdlrm
WebserviceOutputXML.php80190644editdlrm
WebserviceRequest.php832150644editdlrm
WebserviceSpecificManagementAttachments.php129060644editdlrm
WebserviceSpecificManagementImages.php558300644editdlrm
WebserviceSpecificManagementInterface.php15280644editdlrm
WebserviceSpecificManagementSearch.php46670644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/webservice/WebserviceException.php (2656B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class WebserviceExceptionCore extends Exception { protected $status; /** * @var string */ protected $wrong_value; /** * @var array */ protected $available_values; protected $type; public const SIMPLE = 0; public const DID_YOU_MEAN = 1; public function __construct($message, $code) { $exception_code = $code; if (is_array($code)) { $exception_code = $code[0]; $this->setStatus($code[1]); } parent::__construct($message, $exception_code); $this->type = self::SIMPLE; } public function getType() { return $this->type; } public function setType($type) { $this->type = $type; return $this; } public function setStatus($status) { if (Validate::isInt($status)) { $this->status = $status; } return $this; } public function getStatus() { return $this->status; } /** * @return string */ public function getWrongValue() { return $this->wrong_value; } /** * @param string $wrong_value * @param array $available_values * * @return self */ public function setDidYouMean($wrong_value, $available_values) { $this->type = self::DID_YOU_MEAN; $this->wrong_value = $wrong_value; $this->available_values = $available_values; return $this; } public function getAvailableValues() { return $this->available_values; } }