for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Railt package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Railt\SDL\Exception;
use Railt\Io\Exception\ExternalFileException;
use Railt\Reflection\Contracts\Definition;
* Class CompilerException
class CompilerException extends ExternalFileException
{
* @param string $message
* @param array $args
* @return CompilerException
public function rename(string $message, ...$args): self
$this->message = \sprintf($message, ...$args);
return $this;
}
* @param Definition $def
public function in(Definition $def): self
$this->throwsIn($def->getFile(), $def->getLine(), $def->getColumn());