for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* components
*
* @author Wolfy-J
*/
namespace Spiral\Database\Exceptions;
* Schema sync related exception.
class HandlerException extends DriverException
{
* @param QueryException $e
public function __construct(QueryException $e)
parent::__construct($e->getMessage(), $e->getCode(), $e->getPrevious());
}