Searched refs:internalErrorCode (Results 1 – 5 of 5) sorted by relevance
| /appfunctions/appfunctions-common/src/test/java/androidx/appfunctions/ |
| D | AppFunctionRequestExceptionsTest.kt | 26 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()
|
| D | AppFunctionAppExceptionsTest.kt | 26 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()
|
| D | AppFunctionSystemExceptionsTest.kt | 26 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/ |
| D | AppFunctionException.kt | 31 @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/ |
| D | AppFunctionExceptionTest.kt | 113 assertThat(exception.internalErrorCode).isEqualTo(errorCode) in testCreateFromPlatformExtensionsClass()
|