Package com.sinch.android.rtc
Interface SinchError
-
- All Implemented Interfaces:
public interface SinchError
-
-
Method Summary
Modifier and Type Method Description abstract ErrorTypegetErrorType()The error type which describes which part of the SDK caused the error. abstract StringgetMessage()Human readable message of the error, if available. abstract IntegergetCode()The error code that should be used only for logging and troubleshooting purposes. abstract Map<String, String>getExtras()Data containing any extra information about the error. -
-
Method Detail
-
getErrorType
abstract ErrorType getErrorType()
The error type which describes which part of the SDK caused the error.
-
getMessage
abstract String getMessage()
Human readable message of the error, if available.
-
getCode
abstract Integer getCode()
The error code that should be used only for logging and troubleshooting purposes.
-
-
-
-