12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace PHPMailer\PHPMailer;
- class Exception extends \Exception
- {
-
- public function errorMessage()
- {
- return '<strong>' . htmlspecialchars($this->getMessage()) . "</strong><br />\n";
- }
- }
|