1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2026-01-03 23:42:28 +03:00

ZIP Exports: Started import validation

This commit is contained in:
Dan Brown
2024-10-30 13:13:41 +00:00
parent a56a28fbb7
commit b50b7b667d
10 changed files with 177 additions and 1 deletions

View File

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