public function __construct($kernel, $msg = "", $code = "FCM0003", Exception $previous = null)
 {
     $numericCode = ord($code[0]) . ord($code[1]) . ord($code[2]) . substr($code, 3, 3);
     parent::__construct($kernel, $code . ' :: Archive Does Not Exist' . PHP_EOL . $msg, $numericCode, $previous);
 }
 public function __construct($kernel, $msg = "", $code = "FCM0006", Exception $previous = null)
 {
     $numericCode = ord($code[0]) . ord($code[1]) . ord($code[2]) . substr($code, 3, 3);
     parent::__construct($kernel, $code . ' :: Unknown Error' . PHP_EOL . 'An unknown error occurred during processing the file. Please check your server memory limits, make sure that your disk is in good health, and the file is not corrupt.' . PHP_EOL . $msg, $numericCode, $previous);
 }
 public function __construct($kernel, $msg = "", $code = "FCM0010", Exception $previous = null)
 {
     $numericCode = ord($code[0]) . ord($code[1]) . ord($code[2]) . substr($code, 3, 3);
     parent::__construct($kernel, $code . ' :: Invalid Driver Exception' . PHP_EOL . $msg, $numericCode, $previous);
 }
 public function __construct($kernel, $msg = "", $code = "FCM0009", Exception $previous = null)
 {
     $numericCode = ord($code[0]) . ord($code[1]) . ord($code[2]) . substr($code, 3, 3);
     parent::__construct($kernel, $code . ' :: File Cannot Be Added Into Archive' . PHP_EOL . $msg, $numericCode, $previous);
 }