javapns.notification.exceptions.ErrorResponsePacketReceivedException 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.notification.exceptions;
import javapns.notification.*;
/**
* Thrown when an error response packet was received from an APNS server.
*
* @author Sylvain Pedneault
*/
@SuppressWarnings("serial")
public class ErrorResponsePacketReceivedException extends Exception {
private ResponsePacket packet;
public ErrorResponsePacketReceivedException(ResponsePacket packet) {
super(String.format("An error response packet was received from the APNS server: %s", packet.getMessage()));
this.packet = packet;
}
public ResponsePacket getPacket() {
return packet;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy