summaryrefslogtreecommitdiff
path: root/vendor/soundasleep/html2text/src/Html2TextException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/soundasleep/html2text/src/Html2TextException.php')
-rw-r--r--vendor/soundasleep/html2text/src/Html2TextException.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/soundasleep/html2text/src/Html2TextException.php b/vendor/soundasleep/html2text/src/Html2TextException.php
new file mode 100644
index 000000000..fe919f357
--- /dev/null
+++ b/vendor/soundasleep/html2text/src/Html2TextException.php
@@ -0,0 +1,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;
+ }
+
+}