1 <?php
2
3 namespace Alo\Exception;
4
5 if(!defined('GEN_START')) {
6 http_response_code(404);
7 die();
8 }
9
10 /**
11 * File-related exceptions
12 *
13 * @author Art <a.molcanovas@gmail.com>
14 * @deprecated Since 1.1. Please use FileSystemException.
15 */
16 class FileException extends FileSystemException {
17 }