AppIndexTooManyArgumentsException

  • AppIndexTooManyArgumentsException is an exception thrown when the number of arguments passed to an App Index API method call exceeds the allowed maximum.

  • This exception inherits from AppIndexException and provides constructors to create instances with no arguments, with an error message, or with an error message and a cause.

  • It also inherits standard methods from java.lang.Throwable and java.lang.Object like getMessage(), getCause(), and printStackTrace().

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.