.htaccess
1 year ago
FileChunk.php
1 year ago
FileChunkIterator.php
1 year ago
FileDownload.php
1 year ago
FileException.php
1 year ago
FileStream.php
1 year ago
index.html
1 year ago
web.config
1 year ago
FileException.php
18 lines
| 1 | <?php |
| 2 | /* |
| 3 | * |
| 4 | * JetBackup @ package |
| 5 | * Created By Idan Ben-Ezra |
| 6 | * |
| 7 | * Copyrights @ JetApps |
| 8 | * https://www.jetapps.com |
| 9 | * |
| 10 | **/ |
| 11 | namespace JetBackup\Web\File; |
| 12 | |
| 13 | use JetBackup\Exception\JBException; |
| 14 | |
| 15 | defined( '__JETBACKUP__' ) or die( 'Restricted access' ); |
| 16 | |
| 17 | class FileException extends JBException { |
| 18 | } |