1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ReactionError.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Message\Reaction;
4
5use Bitrix\Im\V2\Error;
6use Bitrix\Main\Localization\Loc;
7
8class ReactionError extends Error
9{
10 public const NOT_FOUND = 'REACTION_NOT_FOUND';
11 public const ALREADY_SET = 'REACTION_ALREADY_SET';
12
13 protected function loadErrorMessage($code, $replacements): string
14 {
15 return Loc::getMessage("ERROR_REACTION_{$code}", $replacements) ?: '';
16 }
17
18 protected function loadErrorDescription($code, $replacements): string
19 {
20 return Loc::getMessage("ERROR_REACTION_{$code}_DESC", $replacements) ?: '';
21 }
22}
loadErrorMessage($code, $replacements)
Определения ReactionError.php:13
loadErrorDescription($code, $replacements)
Определения ReactionError.php:18
Определения error.php:15
$code
Определения error.php:17