mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-13 22:43:39 +08:00
7b84558ca1
Some checks failed
analyse-php / build (push) Has been cancelled
lint-php / build (push) Has been cancelled
test-migrations / build (8.1) (push) Has been cancelled
test-migrations / build (8.2) (push) Has been cancelled
test-migrations / build (8.3) (push) Has been cancelled
test-php / build (8.1) (push) Has been cancelled
test-php / build (8.2) (push) Has been cancelled
test-php / build (8.3) (push) Has been cancelled
13 lines
195 B
PHP
13 lines
195 B
PHP
<?php
|
|
|
|
namespace BookStack\Exceptions;
|
|
|
|
class ZipImportException extends \Exception
|
|
{
|
|
public function __construct(
|
|
public array $errors
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
}
|