javapns.notification.exceptions.PayloadIsEmptyException 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;
/**
* Thrown when a payload is empty.
* @author Sylvain Pedneault
*
*/
@SuppressWarnings("serial")
public class PayloadIsEmptyException extends Exception {
public PayloadIsEmptyException() {
super("Payload is empty");
}
/**
* Constructor with custom message
* @param message
*/
public PayloadIsEmptyException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy