Skip to content

ErrorEvent

Lejla Solak edited this page Feb 10, 2025 · 3 revisions



getErrorCode()

Description

Getter for the errorCode field.

Arguments

  • none

Returns

  • ErrorCode - The value of the errorCode field, which contains the reason why some action during the conference call failed with an error.

Example

DefaultRoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
    @Override
    public void onError(ErrorEvent errorEvent) {
        Log.e("Room", String.format("Error: %s.", errorEvent.getErrorCode().getDescription()));
    }
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally