0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-25 21:03:46 +00:00
BookStackApp_BookStack/app/Exceptions/ZipExportValidationException.php
2024-10-30 13:13:41 +00:00

12 lines
206 B
PHP

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