15 lines
318 B
PHP
15 lines
318 B
PHP
<?php
|
|
|
|
namespace Bitrix\Main;
|
|
|
|
/**
|
|
* Exception is thrown when operation is not implemented but should be.
|
|
*/
|
|
class NotImplementedException extends SystemException
|
|
{
|
|
public function __construct($message = "", \Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, 140, '', 0, $previous);
|
|
}
|
|
}
|