for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Cycle\Exception;
use Exception;
use Yiisoft\FriendlyException\FriendlyExceptionInterface;
final class EmptyEntityPathsException extends Exception implements FriendlyExceptionInterface
{
public function getName(): string
return 'Bad declaration of Entity paths';
}
public function getSolution(): ?string
return 'There must be at least one entry in the path list.';