for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanedev\Support\Exceptions;
use Exception;
/**
* Class PackageException
*
* @package Arcanedev\Support\Exceptions
* @author ARCANEDEV <[email protected]>
*/
class PackageException extends Exception
{
public static function unspecifiedName(): self
return new static('You must specify the vendor/package name.');
}