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 stream can't be read.
11
 */
12
class StreamNotReadableException extends Exception
13
{
14
    /**
15
     * @internal
16
     */
17
    public function __construct()
18
    {
19
        parent::__construct('The stream could not be read.');
20
    }
21
}