Class RtcError

java.lang.Object
com.telnyx.webrtc.lib.RtcError

public class RtcError extends Object
RtcError class is used to handle errors obtainable from WebRTC operations.
  • Method Details

    • success

      public static RtcError success()
      Creates a RtcError with success
    • error

      public static RtcError error(@NonNull String error)
      Creates a RtcError with an error
    • isSuccess

      public boolean isSuccess()
    • isError

      public boolean isError()
    • error

      @Nullable public RtcException error()
      Retrieve the error from the WebRTC operation. If the operation was successful, this will return null.
    • throwError

      public void throwError()
      Throws the error if it is not null.