for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace AgelxNash\Modx\Evo\Database\Exceptions;
use Exception;
class QueryException extends Exception
{
protected $query = '';
public function setQuery($query) : self
$this->query = $query;
return $this;
}
public function getQuery() : string
return $this->query;