Implemented PeerMetadata Manager & Telegram User Metadata manager
This commit is contained in:
parent
a322c54a69
commit
8e2e1eaba1
11 changed files with 841 additions and 24 deletions
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace FederationLib\Exceptions\Standard;
|
||||
|
||||
use Exception;
|
||||
use FederationLib\Enums\Standard\ErrorCodes;
|
||||
use Throwable;
|
||||
|
||||
class PeerMetadataNotFoundException extends Exception
|
||||
{
|
||||
/**
|
||||
* @param string $message
|
||||
* @param Throwable|null $previous
|
||||
*/
|
||||
public function __construct(string $message = "", ?Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, ErrorCodes::PEER_METADATA_NOT_FOUND, $previous);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue