• File: GzipException.php
  • Full Path: /home/bazilika/public_html/wp-content/plugins/backup/src/JetBackup/Exception/GzipException.php
  • Date Modified: 03/02/2026 11:38 AM
  • File size: 483 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace JetBackup\Exception;

if (!defined( '__JETBACKUP__')) die('Direct access is not allowed');

use Exception;
use JetBackup\Alert\Alert;
use Throwable;

class GzipException  extends Exception  {
	public function __construct( $message = null, $code = 0, Throwable $previous = null ) {
		// make sure everything is assigned properly
		parent::__construct( $message, $code, $previous );
		Alert::add('GzipCompressorException Error', $message, Alert::LEVEL_CRITICAL);
	}

}