1 <?php
2
3 namespace Alo\Exception;
4
5 if (!defined('GEN_START')) {
6 http_response_code(404);
7 die();
8 }
9
10 /**
11 * PHP extension-related exceptions
12 *
13 * @author Art <a.molcanovas@gmail.com>
14 */
15 class ExtensionException extends AbstractException {
16
17 /**
18 * Code when a PHP extension is not loaded
19 *
20 * @var int
21 */
22 const E_EXT_NOT_LOADED = 100;
23
24 }