All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javapns.notification.exceptions.ErrorResponsePacketReceivedException Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show 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