io.github.jav.exposerversdk.PushNotificationReceiptsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of expo-server-sdk Show documentation
Show all versions of expo-server-sdk Show documentation
Java implementation of expo-server-sdk implementation.
Classes and methods to manage push notifications
The newest version!
package io.github.jav.exposerversdk;
import java.util.List;
import java.util.concurrent.CompletionException;
public class PushNotificationReceiptsException extends CompletionException {
public Exception exception;
public List ids;
public PushNotificationReceiptsException(Exception e, List ids) {
this.exception = e;
this.ids = ids;
}
}