for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kodus\Mail\SMTP;
use Exception;
/**
* General exception thrown by the SMTP Client for various error-conditions.
*/
class SMTPException extends Exception
{
public function __construct($message)
parent::__construct($message);
}