Skip to content

Commit

Permalink
Merge branch 'development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Apr 2, 2024
2 parents c5eb557 + 066027a commit 4cbd73e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -8,6 +8,7 @@
* LICENSE.md file that was distributed with this source code.
*/

use Doctrine\DBAL\Exception\TableNotFoundException;
use FluidTYPO3\Flux\Builder\ContentTypeBuilder;
use FluidTYPO3\Flux\Builder\RequestBuilder;
use FluidTYPO3\Flux\Content\ContentTypeManager;
Expand Down Expand Up @@ -178,7 +179,7 @@ function (ProviderInterface $item1, ProviderInterface $item2) use ($sortingValue

try {
$this->contentTypeBuilder->registerContentType($providerExtensionName, $contentType, $provider);
} catch (PageNotFoundException $error) {
} catch (PageNotFoundException|TableNotFoundException $error) {
// Suppressed: Flux bootstrap does not care if a page can be resolved or not.
} catch (Exception $error) {
if (!$applicationContext->isProduction()) {
Expand Down

0 comments on commit 4cbd73e

Please sign in to comment.