File "Html2TextException.php"
Full Path: /home/leadltht/fastlinkinternet.com/html-api/vendor/soundasleep/html2text/src/Html2TextException.php
File size: 279 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Soundasleep;
class Html2TextException extends \Exception {
/** @var string $more_info */
public $more_info;
public function __construct(string $message = "", string $more_info = "") {
parent::__construct($message);
$this->more_info = $more_info;
}
}