1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
applicationexception.php
См. документацию.
1<?php
2
4{
5 var $msg, $id;
6
7 public function __construct($msg, $id = false)
8 {
9 $this->msg = $msg;
10 $this->id = $id;
11 }
12
13 public function GetString()
14 {
15 return $this->msg;
16 }
17
18 public function GetID()
19 {
20 return $this->id;
21 }
22
23 public function __toString()
24 {
25 return $this->GetString();
26 }
27}
__construct($msg, $id=false)
Определения applicationexception.php:7