Home
last modified time | relevance | path

Searched refs:internalErrorCode (Results 1 – 5 of 5) sorted by relevance

/appfunctions/appfunctions-common/src/test/java/androidx/appfunctions/
DAppFunctionRequestExceptionsTest.kt26 assertThat(AppFunctionDeniedException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
31 assertThat(AppFunctionInvalidArgumentException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
36 assertThat(AppFunctionDisabledException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
41 assertThat(AppFunctionFunctionNotFoundException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
46 assertThat(AppFunctionElementNotFoundException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
51 assertThat(AppFunctionLimitExceededException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
56 assertThat(AppFunctionElementAlreadyExistsException(null, Bundle()).internalErrorCode) in testErrorCategory_RequestError()
DAppFunctionAppExceptionsTest.kt26 assertThat(AppFunctionAppUnknownException(null, Bundle()).internalErrorCode) in testErrorCategory_AppError()
31 assertThat(AppFunctionPermissionRequiredException(null, Bundle()).internalErrorCode) in testErrorCategory_AppError()
36 assertThat(AppFunctionNotSupportedException(null, Bundle()).internalErrorCode) in testErrorCategory_AppError()
DAppFunctionSystemExceptionsTest.kt26 assertThat(AppFunctionSystemUnknownException(null, Bundle()).internalErrorCode) in testErrorCategory_SystemError()
31 assertThat(AppFunctionCancelledException(null, Bundle()).internalErrorCode) in testErrorCategory_SystemError()
/appfunctions/appfunctions-common/src/main/java/androidx/appfunctions/
DAppFunctionException.kt31 @ErrorCode internal val internalErrorCode: Int, constant in androidx.appfunctions.AppFunctionException
40 internalErrorCode, in toPlatformExtensionsClass()
58 when (internalErrorCode) {
/appfunctions/appfunctions-common/src/androidTest/java/androidx/appfunctions/
DAppFunctionExceptionTest.kt113 assertThat(exception.internalErrorCode).isEqualTo(errorCode) in testCreateFromPlatformExtensionsClass()