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

15 lines
299 B
PHP

<?php
namespace Bitrix\Main;
/**
* Exception is thrown when the object can't be constructed.
*/
class ObjectException extends SystemException
{
public function __construct($message = "", \Throwable $previous = null)
{
parent::__construct($message, 500, '', 0, $previous);
}
}