
org.subethamail.smtp.client.AuthenticationNotSupportedException 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
A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.client;
import java.io.IOException;
/**
* Indicates that the server either does not support authentication at all or no
* authentication mechanism exists which is supported by both the server and the
* client.
*/
public final class AuthenticationNotSupportedException extends IOException {
private static final long serialVersionUID = 4269158574227243089L;
public AuthenticationNotSupportedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy