mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-09 10:25:40 +00:00
8ea3855e02
Split attachment service storage work out so it can be shared.
12 lines
199 B
PHP
12 lines
199 B
PHP
<?php
|
|
|
|
namespace BookStack\Exceptions;
|
|
|
|
class ZipValidationException extends \Exception
|
|
{
|
|
public function __construct(
|
|
public array $errors
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
}
|