X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/6ebc13a4980880488f5c9527041dafff867ead3d..7faebc27ec7698739e8bda853493a9cacb6930a5:/typo3/sysext/core/Classes/Resource/AbstractRepository.php diff --git a/typo3/sysext/core/Classes/Resource/AbstractRepository.php b/typo3/sysext/core/Classes/Resource/AbstractRepository.php index d15fc3e04ef4..667d10283127 100644 --- a/typo3/sysext/core/Classes/Resource/AbstractRepository.php +++ b/typo3/sysext/core/Classes/Resource/AbstractRepository.php @@ -274,10 +274,12 @@ abstract class AbstractRepository implements \TYPO3\CMS\Extbase\Persistence\Repo * * @param string $method Name of the method * @param array $arguments The arguments + * + * @throws \BadMethodCallException * @return void */ public function __call($method, $arguments) { - // deliberately empty + throw new \BadMethodCallException('Repository method "' . $method . '" is not implemented.', 1378918410); } /**