Skip to content
Snippets Groups Projects
Commit a9213d4e authored by Fabien Udriot's avatar Fabien Udriot Committed by Xavier Perseguers
Browse files

[BUGFIX] Remove duplicate exception code

Exception code "1314354065" is used twice: once in the abstract
Resource repository and the other one in the File Collection repository.
Since exception code must be unique, the patch simply renames one
occurrence.

Change-Id: I41474db5de7e8f575275d57e9585252857334ee2
Releases: 6.0, 6.1, 6.2
Resolves: #52243
Reviewed-on: https://review.typo3.org/24038
Reviewed-by: Kilian Hann
Tested-by: Kilian Hann
Reviewed-by: Xavier Perseguers
Tested-by: Xavier Perseguers
parent d01c3ced
Branches
Tags
No related merge requests found
......@@ -55,7 +55,7 @@ class FileCollectionRepository extends \TYPO3\CMS\Core\Collection\RecordCollecti
public function findByUid($uid) {
$object = parent::findByUid($uid);
if ($object === NULL) {
throw new \RuntimeException('Could not find row with uid "' . $uid . '" in table "' . $this->table . '"', 1314354065);
throw new \RuntimeException('Could not find row with uid "' . $uid . '" in table "' . $this->table . '"', 1314354066);
}
return $object;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment