org.subethamail.smtp.client.SMTPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp Show documentation
Show all versions of subethasmtp Show documentation
SubEtha SMTP is an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.client;
import java.io.IOException;
import org.subethamail.smtp.client.SMTPClient.Response;
@SuppressWarnings("serial")
public class SMTPException extends IOException
{
Response response;
public SMTPException(Response resp)
{
super(resp.toString());
this.response = resp;
}
public Response getResponse() { return this.response; }
}