<?php1/**2* PHPMailer Exception class.3* PHP Version 5.5.4*5* @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project6*7* @author Marcus Bointon (Synchro/coolbru) <[email protected]>8* @author Jim Jagielski (jimjag) <[email protected]>9* @author Andy Prevost (codeworxtech) <[email protected]>10* @author Brent R. Matzelle (original founder)11* @copyright 2012 - 2020 Marcus Bointon12* @copyright 2010 - 2012 Jim Jagielski13* @copyright 2004 - 2009 Andy Prevost14* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License15* @note This program is distributed in the hope that it will be useful - WITHOUT16* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or17* FITNESS FOR A PARTICULAR PURPOSE.18*/1920namespace PHPMailer\PHPMailer;2122/**23* PHPMailer exception handler.24*25* @author Marcus Bointon <[email protected]>26*/27class Exception extends \Exception28{29/**30* Prettify error message output.31*32* @return string33*/34public function errorMessage()35{36return '<strong>' . htmlspecialchars($this->getMessage()) . "</strong><br />\n";37}38}394041