orkhanahmadov/laravel-zip-validator

View on GitHub
src/Exceptions/ZipException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Orkhanahmadov\ZipValidator\Exceptions;

class ZipException extends \RuntimeException
{
    public function __construct($zipErrorCode)
    {
        parent::__construct(
            'Could not open file. ZIP file error: ' . $zipErrorCode,
            0,
            null
        );
    }
}