1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-06 12:02:45 +03:00

ZIP Import: Added upload handling

Split attachment service storage work out so it can be shared.
This commit is contained in:
Dan Brown
2024-11-02 20:48:21 +00:00
parent 74fce9640e
commit 8ea3855e02
5 changed files with 195 additions and 103 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace BookStack\Exceptions;
class ZipValidationException extends \Exception
{
public function __construct(
public array $errors
) {
parent::__construct();
}
}