PHPMailer\PHPMailer

Exception{}WP 1.0

PHPMailer exception handler.

Хуков нет.

Использование

$Exception = new Exception();
// use class methods

Методы

  1. public errorMessage()

Код Exception{} WP 6.1.1

class Exception extends \Exception
{
    /**
     * Prettify error message output.
     *
     * @return string
     */
    public function errorMessage()
    {
        return '<strong>' . htmlspecialchars($this->getMessage(), ENT_COMPAT | ENT_HTML401) . "</strong><br />\n";
    }
}