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