ez-pro/core/bitrix/modules/main/lib/ObjectNotFoundException.php
2025-11-13 19:04:05 +03:00

15 lines
300 B
PHP

<?php
namespace Bitrix\Main;
/**
* Exception is thrown when an object is not present.
*/
class ObjectNotFoundException extends SystemException
{
public function __construct($message = "", \Throwable $previous = null)
{
parent::__construct($message, 510, '', 0, $previous);
}
}