for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Exceptions;
use RuntimeException;
final class PackageDoesntExistsException extends RuntimeException
{
public function __construct(string $package)
parent::__construct('The "' . $package . '" package was not found.');
}