BookStack/app/Exceptions/ZipValidationException.php
Dan Brown 8ea3855e02
ZIP Import: Added upload handling
Split attachment service storage work out so it can be shared.
2024-11-02 20:48:21 +00:00

13 lines
199 B
PHP

<?php
namespace BookStack\Exceptions;
class ZipValidationException extends \Exception
{
public function __construct(
public array $errors
) {
parent::__construct();
}
}