Jyxo\Mail\Sender\RecipientUnknownException::__construct PHP Method

__construct() public method

Creates an exception.
public __construct ( string $message = null, integer $code, array $list = [] )
$message string Exception message
$code integer Exception code
$list array List of non-existent addresses
    public function __construct(string $message = null, int $code = 0, array $list = [])
    {
        parent::__construct($message, $code);
        $this->list = $list;
    }
RecipientUnknownException