AppFunctionUnknownException
class AppFunctionUnknownException : AppFunctionException
kotlin.Any | ||||
↳ | kotlin.Throwable | |||
↳ | java.lang.Exception | |||
↳ | androidx.appfunctions.AppFunctionException | |||
↳ | androidx.appfunctions.AppFunctionUnknownException |
Thrown when an unknown error has occurred.
This Exception is used when the error doesn't belong to any other AppFunctionException. This may happen due to version skews in the error codes between the platform and the sdk. E.g. if the app is running on a newer platform version (with a new error code) and an older sdk.
Note that this is different from AppFunctionAppUnknownException
, in that the error wasn't necessarily caused by the app.
Summary
Public constructors |
---|
AppFunctionUnknownException(errorCode: Int, errorMessage: String?) Create an |
Inherited functions |
---|
Inherited properties |
||
---|---|---|
|
||
Public constructors
AppFunctionUnknownException
AppFunctionUnknownException(errorCode: Int, errorMessage: String? = null)
Create an AppFunctionUnknownException
.