1 <?php 2 3 namespace AloFramework\Log; 4 5 use Exception; 6 7 /** 8 * Log-related exceptions 9 * @author Art <a.molcanovas@gmail.com> 10 */ 11 class LogException extends Exception { 12 13 /** 14 * Code when the log save path is invalid 15 * @var int 16 */ 17 const E_INVALID_PATH = 1; 18 } 19