Package com.unblu.sdk.core.callback
Interface OpenConversationOverviewExceptionCallback
-
- All Superinterfaces:
NotInitializedExceptionCallback
public interface OpenConversationOverviewExceptionCallback extends NotInitializedExceptionCallback
Callback for exceptions which can occur when it failed to open the conversation overview
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFailedToOpenOverview(OpenConversationOverviewErrorType type, java.lang.String details)
Error while opening the conversation overview.-
Methods inherited from interface com.unblu.sdk.core.callback.NotInitializedExceptionCallback
onNotInitialized
-
-
-
-
Method Detail
-
onFailedToOpenOverview
void onFailedToOpenOverview(@NonNull OpenConversationOverviewErrorType type, @Nullable java.lang.String details)
Error while opening the conversation overview. See error type for details- Parameters:
type
- Type of the errordetails
- Error message; Can be null
-
-