for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zored\Telegram\Madeline\Auth\Handler\Exception;
final class AuthHandlerException extends \RuntimeException
{
public static function becauseNoSuitsCall(string $class): self
return new self("You must call $class::suits first.");
}
public static function becauseHandlerNotFound(): self
return new self('Auth handler not found for config.');