io.github.jav.exposerversdk.PushNotificationReceiptsErrorsException 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;
public class PushNotificationReceiptsErrorsException extends Exception {
public List errors;
public List receipts;
public PushNotificationReceiptsErrorsException(List errors, List receipts) {
this.errors = errors;
this.receipts = receipts;
}
}