From a5274755d12418bd0ba5b494dc0eea5cc80f8f04 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 31 Jan 2019 12:42:27 +0100 Subject: [PATCH] Catch Exception in PPA --- Blacklight/processing/post/ProcessAdditional.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Blacklight/processing/post/ProcessAdditional.php b/Blacklight/processing/post/ProcessAdditional.php index 51b43c3c5..c74ec6a1b 100755 --- a/Blacklight/processing/post/ProcessAdditional.php +++ b/Blacklight/processing/post/ProcessAdditional.php @@ -1060,7 +1060,7 @@ class ProcessAdditional try { // Get a summary of the compressed file. $dataSummary = $this->_archiveInfo->getSummary(true); - } catch (\ExceptionWithThrowable $exception) { + } catch (\Exception $exception) { //Log the exception and continue to next item if (config('app.debug') === true) { Log::warning($exception->getTraceAsString());