Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace ZipStream\Exception;
6
 
7
use ZipStream\Exception;
8
 
9
/**
10
 * This Exception gets invoked if a non seekable stream is
11
 * provided and zero headers are disabled.
12
 */
13
class StreamNotSeekableException extends Exception
14
{
15
    /**
16
     * @internal
17
     */
18
    public function __construct()
19
    {
20
        parent::__construct('enableZeroHeader must be enable to add non seekable streams');
21
    }
22
}