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

io.github.jav.exposerversdk.PushNotificationReceiptsErrorsException Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy