AppIndexTooManyArgumentsException
Stay organized with collections
Save and categorize content based on your preferences.
Public Constructor Summary
Inherited Method Summary
From class java.lang.Throwable
From class java.lang.Object
Object
|
clone()
|
boolean |
|
void |
finalize()
|
final Class<?>
|
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String
|
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
Public Constructors
public AppIndexTooManyArgumentsException ()
public AppIndexTooManyArgumentsException (String
message)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003eAppIndexTooManyArgumentsException\u003c/code\u003e is thrown when the number of arguments provided to an App Index API method exceeds the defined limit (\u003ccode\u003eIndexable.MAX_INDEXABLES_TO_BE_UPDATED_IN_ONE_CALL\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eThis exception extends \u003ccode\u003eAppIndexException\u003c/code\u003e and provides three constructors for instantiation: a default constructor, one accepting an error message, and another accepting both a message and a cause.\u003c/p\u003e\n"],["\u003cp\u003eIt inherits methods from \u003ccode\u003eThrowable\u003c/code\u003e for handling exceptions, including retrieving the cause, stack trace, and error messages.\u003c/p\u003e\n"]]],["`AppIndexTooManyArgumentsException` is thrown when an App Index API method receives more arguments than allowed, defined by `Indexable.MAX_INDEXABLES_TO_BE_UPDATED_IN_ONE_CALL`. It extends `AppIndexException`. You can create an instance of this exception, optionally with an error message or an error message and a cause. This class inherits standard exception handling methods like `getMessage()`, `printStackTrace()`, `getCause()`, among others, from `Throwable` and `Object`.\n"],null,["public class **AppIndexTooManyArgumentsException** extends [AppIndexException](/android/reference/com/google/android/gms/appindex/AppIndexException) \nThe exception that is thrown if the number of arguments passed to an App Index API method\nin a single call exceeds the allowed maximum of [Indexable.MAX_INDEXABLES_TO_BE_UPDATED_IN_ONE_CALL](/android). \n\nPublic Constructor Summary\n\n|---|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| | [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException#AppIndexTooManyArgumentsException())() Creates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException). |\n| | [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException#AppIndexTooManyArgumentsException(java.lang.String))([String](//developer.android.com/reference/java/lang/String.html) message) Creates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException) using error message. |\n| | [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException#AppIndexTooManyArgumentsException(java.lang.String,%20java.lang.Throwable))([String](//developer.android.com/reference/java/lang/String.html) message, [Throwable](//developer.android.com/reference/java/lang/Throwable.html) cause) Creates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException) using error message and cause. |\n\nInherited Method Summary \nFrom class java.lang.Throwable \n\n|------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|\n| synchronized final void | addSuppressed([Throwable](//developer.android.com/reference/java/lang/Throwable.html) arg0) |\n| synchronized [Throwable](//developer.android.com/reference/java/lang/Throwable.html) | fillInStackTrace() |\n| synchronized [Throwable](//developer.android.com/reference/java/lang/Throwable.html) | getCause() |\n| [String](//developer.android.com/reference/java/lang/String.html) | getLocalizedMessage() |\n| [String](//developer.android.com/reference/java/lang/String.html) | getMessage() |\n| [StackTraceElement\\[\\]](//developer.android.com/reference/java/lang/StackTraceElement.html) | getStackTrace() |\n| synchronized final [Throwable\\[\\]](//developer.android.com/reference/java/lang/Throwable.html) | getSuppressed() |\n| synchronized [Throwable](//developer.android.com/reference/java/lang/Throwable.html) | initCause([Throwable](//developer.android.com/reference/java/lang/Throwable.html) arg0) |\n| void | printStackTrace() |\n| void | printStackTrace([PrintWriter](//developer.android.com/reference/java/io/PrintWriter.html) arg0) |\n| void | printStackTrace([PrintStream](//developer.android.com/reference/java/io/PrintStream.html) arg0) |\n| void | setStackTrace([StackTraceElement\\[\\]](//developer.android.com/reference/java/lang/StackTraceElement.html) arg0) |\n| [String](//developer.android.com/reference/java/lang/String.html) | toString() |\n\nFrom class java.lang.Object \n\n|----------------------------------------------------------------------------|--------------------------------------------------------------------------------|\n| [Object](//developer.android.com/reference/java/lang/Object.html) | clone() |\n| boolean | equals([Object](//developer.android.com/reference/java/lang/Object.html) arg0) |\n| void | finalize() |\n| final [Class](//developer.android.com/reference/java/lang/Class.html)\\\u003c?\\\u003e | getClass() |\n| int | hashCode() |\n| final void | notify() |\n| final void | notifyAll() |\n| [String](//developer.android.com/reference/java/lang/String.html) | toString() |\n| final void | wait(long arg0, int arg1) |\n| final void | wait(long arg0) |\n| final void | wait() |\n\nPublic Constructors \n\npublic **AppIndexTooManyArgumentsException** () \nCreates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException). \n\npublic **AppIndexTooManyArgumentsException** ([String](//developer.android.com/reference/java/lang/String.html) message) \nCreates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException) using error message. \n\npublic **AppIndexTooManyArgumentsException** ([String](//developer.android.com/reference/java/lang/String.html) message, [Throwable](//developer.android.com/reference/java/lang/Throwable.html) cause) \nCreates a new instance of [AppIndexTooManyArgumentsException](/android/reference/com/google/android/gms/appindex/AppIndexTooManyArgumentsException) using error message and cause."]]