for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Psh\Config;
use Exception;
use Shopware\Psh\PshErrorMessage;
use Throwable;
/** @psalm-immutable */
class NoConfigFileFound extends Exception implements PshErrorMessage
{
public function __construct(?Throwable $previous = null)
parent::__construct('No config file found, make sure you have created a .psh.xml or .psh.xml.dist file', 0, $previous);
}