AloFramework documentation
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo

Namespaces

  • Alo
    • Cache
    • CLI
    • Controller
    • Db
    • Exception
    • FileSystem
    • Session
    • Traversables
    • Validators
    • Windows
  • Controller
  • None
  • PHP

Exceptions

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