1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-12-04 05:22:38 +03:00
Files
bookstack/app/Exceptions/ZipExportValidationException.php
2024-10-30 13:13:41 +00:00

13 lines
206 B
PHP

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