File "Html2TextException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor/soundasleep/html2text/src/Html2TextException.php
File size: 253 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Html2Text;
if (!defined('ABSPATH')) exit;
class Html2TextException extends \Exception {
 var $more_info;
 public function __construct($message = "", $more_info = "") {
 parent::__construct($message);
 $this->more_info = $more_info;
 }
}