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

com.treasuredata.android.cdp.ErrorFetchUserSegmentsResult Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.treasuredata.android.cdp;

class ErrorFetchUserSegmentsResult extends FetchUserSegmentsResult {

    private final Exception exception;

    ErrorFetchUserSegmentsResult(Exception e) {
        exception = e;
    }

    @Override
    void invoke(FetchUserSegmentsCallback callback) {
        callback.onError(exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy