. * * @author Daniil Gentili * @copyright 2016-2023 Daniil Gentili * @license https://opensource.org/licenses/AGPL-3.0 AGPLv3 * @link https://docs.madelineproto.xyz MadelineProto documentation */ namespace danog\MadelineProto; /** * Indicates that the specified secret chat wasn't found. */ final class SecretPeerNotInDbException extends Exception { public function __construct() { parent::__construct(Lang::$current_lang['sec_peer_not_in_db']); } }