AI-generated Key Takeaways
-
AppIndexException is a class of exceptions thrown by the App Index API.
-
Known direct subclasses include AppIndexInvalidArgumentException and AppIndexTooManyArgumentsException.
-
There are two public constructors for AppIndexException, one accepting a detail message and another accepting a detail message and a cause.
| AppIndexInvalidArgumentException | The exception that is thrown if an invalid argument is provided to one of the App Index API methods. |
| AppIndexTooManyArgumentsException | The exception that is thrown if the number
of arguments passed to an App Index API method in a single call exceeds the
allowed maximum of Indexable.MAX_INDEXABLES_TO_BE_UPDATED_IN_ONE_CALL
. |
Class of exceptions thrown by the App Index API.
Public Constructor Summary
| * | |
| * |
Inherited Method Summary
Public Constructors
public AppIndexException ( String detailMessage)
Creates a new instance of AppIndexException
using error message.
public AppIndexException ( String detailMessage, Throwable cause)
Creates a new instance of AppIndexException
using error message and cause.

