javapns.communication.exceptions.CommunicationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javapns-jdk16 Show documentation
Show all versions of javapns-jdk16 Show documentation
Library to send notifications using APNS
The newest version!
package javapns.communication.exceptions;
public class CommunicationException extends Exception {
private static final long serialVersionUID = 1L;
public CommunicationException(String message, Exception cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy