ez-pro/core/bitrix/modules/rest/lib/RestExceptionInterface.php
2025-11-13 19:52:28 +03:00

10 lines
139 B
PHP

<?
namespace Bitrix\Rest;
interface RestExceptionInterface
{
public function output(): array;
public function getStatus(): string;
}
?>