0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-28 05:42:28 +00:00
BookStackApp_BookStack/app/Exceptions/ZipImportException.php

12 lines
195 B
PHP

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