
com.notnoop.exceptions.ApnsServiceStoppedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apns Show documentation
Show all versions of apns Show documentation
Library to send Apple Push Notification (Fork of original!)
The newest version!
package com.notnoop.exceptions;
/**
* Exception to be thrown when trying to send a push message through a
* connection in an ApnsService when the service has already been closed. It
* contains the deviceToken failed in the push operation.
*
* @author Jorge
*
*/
public class ApnsServiceStoppedException extends ApnsException {
private static final long serialVersionUID = 1L;
private final String failedDeviceToken;
public ApnsServiceStoppedException(String failedDeviceToken) {
this.failedDeviceToken = failedDeviceToken;
}
public String getFailedDeviceToken() {
return failedDeviceToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy