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