summaryrefslogtreecommitdiff
path: root/vendor/soundasleep/html2text/src/Html2TextException.php
blob: fe919f35773cd56c6778a7fe8c6cd890490e853b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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;
	}

}