本文整理汇总了PHP中Exception::setData方法的典型用法代码示例。如果您正苦于以下问题:PHP Exception::setData方法的具体用法?PHP Exception::setData怎么用?PHP Exception::setData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exception
的用法示例。
在下文中一共展示了Exception::setData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkArrayException
/**
* @throws Exception
*/
public function checkArrayException($array)
{
if (false === $this->checkArray($array)) {
$e = new Exception('签名检查失败');
$e->setData($array);
throw $e;
}
}
示例2: checkErrorAndException
public function checkErrorAndException()
{
if ($this->isError()) {
$e = new Exception('微信发生错误: ' . $this->getErrorMessage());
$e->setData($this);
throw $e;
}
}
示例3: createByXmlString
/**
* @param string $xml
* @throws \Chuntent\Extension\Tools\Weixin\Exception
* @return \Chuntent\Extension\Tools\Weixin\Message
*/
public function createByXmlString($xml)
{
$simple = simplexml_load_string($xml);
if (empty($simple)) {
$e = new Exception('xml文件错误');
$e->setData($xml);
throw $e;
}
$type = (string) $simple->MsgType;
$class = __CLASS__ . ucfirst($type);
if (class_exists($class)) {
return new $class($simple);
} else {
return new self($simple);
}
}