for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Psh\Listing;
use RuntimeException;
/**
* Special exception to enable a nice error message from the app
*/
class ScriptNotFound extends RuntimeException
{
* @var string
private $scriptName;
public function setScriptName(string $scriptName): self
$this->scriptName = $scriptName;
return $this;
}
public function getScriptName(): string
return $this->scriptName;