com.treasuredata.android.cdp.ErrorFetchUserSegmentsResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of td-android-sdk Show documentation
Show all versions of td-android-sdk Show documentation
Android SDK for Treasure Data Cloud
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);
}
}