for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chubbyphp\Security\Authentication\Exception;
final class EmptyPasswordException extends \Exception
{
/**
* @return EmptyPasswordException
*/
public static function create(): self
return new self('Empty password');
}