for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SForce\Wsdl;
class ApiQueryFault extends ApiFault
{
/**
* @var int
*/
protected $row = null;
protected $column = null;
* @param ExceptionCode $exceptionCode
* @param string $exceptionMessage
* @param int $row
* @param int $column
public function __construct($exceptionCode = null, $exceptionMessage = null, $row = null, $column = null)
parent::__construct($exceptionCode, $exceptionMessage);
$this->row = $row;
$this->column = $column;
}
* @return int
public function getRow()
return $this->row;
* @return \SForce\Wsdl\ApiQueryFault
public function setRow($row)
return $this;
public function getColumn()
return $this->column;
public function setColumn($column)