‪TYPO3CMS  ‪main
DatabaseRecordException.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
24 {
28  protected ‪$tableName;
29 
33  protected ‪$uid;
34 
44  public function ‪__construct($message, $code, \‪Exception $previousException = null, ‪$tableName, ‪$uid)
45  {
46  parent::__construct($message, $code, $previousException);
47  $this->tableName = ‪$tableName;
48  $this->uid = ‪$uid;
49  }
50 
56  public function ‪getTableName()
57  {
58  return ‪$this->tableName;
59  }
60 
66  public function ‪getUid()
67  {
68  return ‪$this->uid;
69  }
70 }
‪TYPO3\CMS\Backend\Form\Exception
Definition: AccessDeniedContentEditException.php:16
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException\__construct
‪__construct($message, $code, \Exception $previousException=null, $tableName, $uid)
Definition: DatabaseRecordException.php:42
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException\getUid
‪int getUid()
Definition: DatabaseRecordException.php:64
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException\$tableName
‪string $tableName
Definition: DatabaseRecordException.php:27
‪TYPO3\CMS\Backend\Form\Exception
Definition: Exception.php:21
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException\getTableName
‪string getTableName()
Definition: DatabaseRecordException.php:54
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException
Definition: DatabaseRecordException.php:24
‪TYPO3\CMS\Backend\Form\Exception\DatabaseRecordException\$uid
‪int $uid
Definition: DatabaseRecordException.php:31