Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add HandleResolutionException for failed handle resolution

+11
+11
src/Exceptions/HandleResolutionException.php
··· 1 + <?php 2 + 3 + namespace SocialDept\AtpClient\Exceptions; 4 + 5 + class HandleResolutionException extends \Exception 6 + { 7 + public function __construct(string $handle) 8 + { 9 + parent::__construct("Unable to resolve handle '{$handle}' to a DID"); 10 + } 11 + }