This commit is contained in:
Yuri Kuznetsov
2024-09-14 14:59:25 +03:00
parent 6340532f99
commit 8e997e64f3
+1 -2
View File
@@ -30,7 +30,6 @@
namespace Espo\Core\Duplicate;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Error;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Select\SelectBuilderFactory;
@@ -140,7 +139,7 @@ class Finder
->limit(0, self::LIMIT)
->build();
}
catch (Error|Forbidden|BadRequest $e) {
catch (Forbidden|BadRequest $e) {
throw new RuntimeException($e->getMessage(), 0, $e);
}