javapns.notification.exceptions.PayloadAlertAlreadyExistsException 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
package javapns.notification.exceptions;
import org.json.*;
/**
* Thrown when a payload exceeds the maximum size allowed.
* @author Sylvain Pedneault
*
*/
@SuppressWarnings("serial")
public class PayloadAlertAlreadyExistsException extends JSONException {
/**
* Default constructor
*/
public PayloadAlertAlreadyExistsException() {
super("Payload alert already exists");
}
/**
* Constructor with custom message
* @param message
*/
public PayloadAlertAlreadyExistsException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy