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

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

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