File "RuntimeMmdbException.php"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Wordfence\MmdbReader\Exception;

use RuntimeException;
use Throwable;

class RuntimeMmdbException extends RuntimeException implements MmdbThrowable {

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

}