federationlib/src/FederationLib/Exceptions/Standard/ClientNotFoundException.php
2023-06-04 14:23:51 -04:00

19 lines
No EOL
500 B
PHP

<?php
namespace FederationLib\Exceptions\Standard;
use Exception;
use FederationLib\Enums\Standard\ErrorCodes;
use Throwable;
class ClientNotFoundException extends Exception
{
/**
* @param string $message
* @param Throwable|null $previous
*/
public function __construct(string $message = "", ?Throwable $previous = null)
{
parent::__construct($message, ErrorCodes::CLIENT_NOT_FOUND, $previous);
}
}