| 1 | <?php |
||
| 5 | class InvalidQueryException extends ErrorException implements ExceptionInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $sql_string; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * |
||
| 14 | * @return \Soluble\Normalist\Exception\InvalidQueryException |
||
| 15 | */ |
||
| 16 | public function setSQLString($sql_string) |
||
| 17 | { |
||
| 18 | $this->sql_string = $sql_string; |
||
| 19 | return $this; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getSQLString() |
||
| 30 | } |
||
| 31 |