File "MmdbException.php"

Full Path: /home/itfekxul/theolympicssports.com/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Wordfence\MmdbReader\Exception;

use Exception;
use Throwable;

class MmdbException extends Exception implements MmdbThrowable {

	/**
	 * @param string $message
	 * @param ?Throwable $previous
	 */
	public function __construct($message, $previous = null) {
		parent::__construct($message, 0, $previous);
	}

}