public function __construct($message, $category = "", $faultCode = null, \Exception $internalException = null) { $this->_category = (string) $category; $this->_faultCode = (int) $faultCode; parent::__construct($message, $internalException); }
public function __construct($message, $faultCode = null, \Exception $internalException = null) { $this->_faultCode = (int) $faultCode; $this->_internalException = $internalException; parent::__construct($message, $internalException); }