-
Notifications
You must be signed in to change notification settings - Fork 2
ErrorEvent
Lejla Solak edited this page May 26, 2023
·
2 revisions
Getter for the errorCode
field.
none
-
ErrorCode
- Value of theerrorCode
field that 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("WebRTC", String.format("Error: %s.", errorEvent.getErrorCode().getDescription()));
}
};