15 lines
299 B
PHP
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);
|
|
}
|
|
}
|