Files
iTop/lib/soundasleep/html2text/src/Html2TextException.php
Eric Espie 71e36d264e fix unit tests
2024-06-17 14:52:55 +02:00

16 lines
279 B
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;
}
}