| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace Atk4\Data\Persistence\Sql; |
| 6: | |
| 7: | class ExecuteException extends Exception |
| 8: | { |
| 9: | public function getErrorMessage(): string |
| 10: | { |
| 11: | return $this->getParams()['error']; |
| 12: | } |
| 13: | |
| 14: | public function getDebugQuery(): string |
| 15: | { |
| 16: | return $this->getParams()['query']; |
| 17: | } |
| 18: | } |
| 19: |