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 Show documentation
Show all versions of javapns Show documentation
Java client library to use Apple Push Notification Service
The newest version!
package javapns.communication.exceptions;
public class CommunicationException extends Exception {
private static final long serialVersionUID = 1286560293829685555L;
public CommunicationException(final String message, final Exception cause) {
super(message, cause);
}
}