This commit is contained in:
root
2025-11-13 19:52:28 +03:00
parent 8aeeb05b7d
commit 807dec3b6c
4646 changed files with 163445 additions and 626017 deletions

View File

@@ -4,8 +4,6 @@ namespace Bitrix\Rest\Api;
use Bitrix\Bitrix24\Feature;
use Bitrix\Main\Application;
use Bitrix\Main\ArgumentException;
use Bitrix\Main\ArgumentNullException;
use Bitrix\Main\Error;
use Bitrix\Main\Loader;
use Bitrix\Main\Result;
@@ -145,8 +143,8 @@ class Event extends \IRestService
* @return bool
*
* @throws AccessException
* @throws ArgumentException
* @throws ArgumentNullException
* @throws Exceptions\ArgumentException
* @throws Exceptions\ArgumentNullException
* @throws AuthTypeException
* @throws RestException
* @throws \Exception
@@ -332,8 +330,8 @@ class Event extends \IRestService
* @return array
*
* @throws AccessException
* @throws ArgumentException
* @throws ArgumentNullException
* @throws Exceptions\ArgumentException
* @throws Exceptions\ArgumentNullException
* @throws AuthTypeException
* @throws \Bitrix\Main\ObjectPropertyException
* @throws \Bitrix\Main\SystemException
@@ -356,14 +354,14 @@ class Event extends \IRestService
if($eventName == '')
{
throw new ArgumentNullException("EVENT");
throw new Exceptions\ArgumentNullException("EVENT");
}
if($eventType <> '')
{
if(!in_array($eventType, array(EventTable::TYPE_ONLINE, EventTable::TYPE_OFFLINE)))
{
throw new ArgumentException('Value must be one of {'.EventTable::TYPE_ONLINE.'|'.EventTable::TYPE_OFFLINE.'}', 'EVENT_TYPE');
throw new Exceptions\ArgumentException('Value must be one of {'.EventTable::TYPE_ONLINE.'|'.EventTable::TYPE_OFFLINE.'}', 'EVENT_TYPE');
}
}
else
@@ -707,12 +705,12 @@ class Event extends \IRestService
if($processId === null)
{
throw new ArgumentNullException('PROCESS_ID');
throw new Exceptions\ArgumentNullException('PROCESS_ID');
}
if(!is_array($messageId))
{
throw new ArgumentException('Value must be array of MESSAGE_ID values', 'message_id');
throw new Exceptions\ArgumentException('Value must be array of MESSAGE_ID values', 'message_id');
}
$clientInfo = AppTable::getByClientId($server->getClientId());