0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-03-08 17:53:03 +00:00
BookStackApp_BookStack/app/Exceptions/ZipValidationException.php

13 lines
199 B
PHP
Raw Normal View History

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