Laravel AT Protocol Client (alpha & unstable)
at v0.0.55 244 B view raw
1<?php 2 3namespace SocialDept\AtpClient\Exceptions; 4 5class HandleResolutionException extends \Exception 6{ 7 public function __construct(string $handle) 8 { 9 parent::__construct("Unable to resolve handle '{$handle}' to a DID"); 10 } 11}