# mail-queue/1.4.1/lib/html2text/src/Html2TextException.php

Mail Queue, version 1.4.1. 16 lines.

- Page: https://pluginprobe.com/plugins/mail-queue/1.4.1/code/lib/html2text/src/Html2TextException.php
- Raw: https://pluginprobe.com/plugins/mail-queue/1.4.1/raw/lib/html2text/src/Html2TextException.php
- Modified: 2024-08-16T12:45:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mail-queue/1.4.1/code/lib/html2text/src/Html2TextException.php#L10-L20`.

```php
<?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;
	}

}

```
