mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-12 21:43:48 +08:00
8ea3855e02
Some checks are pending
analyse-php / build (push) Waiting to run
lint-php / build (push) Waiting to run
test-migrations / build (8.1) (push) Waiting to run
test-migrations / build (8.2) (push) Waiting to run
test-migrations / build (8.3) (push) Waiting to run
test-php / build (8.1) (push) Waiting to run
test-php / build (8.2) (push) Waiting to run
test-php / build (8.3) (push) Waiting to run
Split attachment service storage work out so it can be shared.
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
namespace BookStack\Exceptions;
|
|
|
|
class ZipValidationException extends \Exception
|
|
{
|
|
public function __construct(
|
|
public array $errors
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
}
|