io.github.yawenok.apns.http2.exceptions.AuthenticationException Maven / Gradle / Ivy
package io.github.yawenok.apns.http2.exceptions;
public class AuthenticationException extends Exception {
public AuthenticationException() {
super();
}
public AuthenticationException(final String message) {
super(message);
}
public AuthenticationException(final String message, final Throwable cause) {
super(message, cause);
}
}