-
Notifications
You must be signed in to change notification settings - Fork 2
ErrorEvent
Lejla Solak edited this page Feb 10, 2025
·
3 revisions
Getter for the errorCode field.
none
-
ErrorCode- The value of theerrorCodefield, which contains the reason why some action during the conference call failed with an error.
DefaultRoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
@Override
public void onError(ErrorEvent errorEvent) {
Log.e("Room", String.format("Error: %s.", errorEvent.getErrorCode().getDescription()));
}
};