AppIndexTooManyArgumentsException

  • AppIndexTooManyArgumentsException is thrown when the number of arguments provided to an App Index API method exceeds the defined limit (Indexable.MAX_INDEXABLES_TO_BE_UPDATED_IN_ONE_CALL).

  • This exception extends AppIndexException and provides three constructors for instantiation: a default constructor, one accepting an error message, and another accepting both a message and a cause.

  • It inherits methods from Throwable for handling exceptions, including retrieving the cause, stack trace, and error messages.

public class AppIndexTooManyArgumentsException extends AppIndexException

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.

Public Constructor Summary

AppIndexTooManyArgumentsException(String message)
Creates a new instance of AppIndexTooManyArgumentsException using error message.
AppIndexTooManyArgumentsException(String message, Throwable cause)
Creates a new instance of AppIndexTooManyArgumentsException using error message and cause.

Inherited Method Summary

Public Constructors

public AppIndexTooManyArgumentsException ()

Creates a new instance of AppIndexTooManyArgumentsException.

public AppIndexTooManyArgumentsException (String message)

Creates a new instance of AppIndexTooManyArgumentsException using error message.

public AppIndexTooManyArgumentsException (String message, Throwable cause)

Creates a new instance of AppIndexTooManyArgumentsException using error message and cause.