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 strict simulation is executed and the file
11
 * information can't be determined without reading the entire file.
12
 */
13
class SimulationFileUnknownException extends Exception
14
{
15
    public function __construct()
16
    {
17
        parent::__construct('The details of the strict simulation file could not be determined without reading the entire file.');
18
    }
19
}