1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

ZIP Imports: Finished off core import logic

This commit is contained in:
Dan Brown
2024-11-11 15:06:46 +00:00
parent 378f0d595f
commit 48c101aa7a
5 changed files with 113 additions and 28 deletions

View File

@@ -7,6 +7,7 @@ class ZipImportException extends \Exception
public function __construct(
public array $errors
) {
parent::__construct();
$message = "Import failed with errors:" . implode("\n", $this->errors);
parent::__construct($message);
}
}