HttpStatusException
Stay organized with collections
Save and categorize content based on your preferences.
Exception thrown when the server returns a non-200 response code.
Public Constructor Summary
Inherited Method Summary
From class java.lang.Throwable
From class java.lang.Object
Public Constructors
public
HttpStatusException
( String
msg, int
errorHttpStatus)
Public Methods
public int
getHttpErrorStatus
()
Returns the status code of a failed HTTP request.
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\u003eHttpStatusException\u003c/code\u003e signals that a server returned a non-200 HTTP response code, indicating an error.\u003c/p\u003e\n"],["\u003cp\u003eIt provides access to the error's HTTP status code through \u003ccode\u003egetHttpErrorStatus()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThis exception includes a detailed message about the error alongside the status code.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eHttpStatusException\u003c/code\u003e inherits functionalities from the standard Java \u003ccode\u003eException\u003c/code\u003e class for error handling.\u003c/p\u003e\n"]]],[],null,["# HttpStatusException\n\npublic class **HttpStatusException** extends [Exception](//developer.android.com/reference/java/lang/Exception.html) \nException thrown when the server returns a non-200 response code. \n\n### Public Constructor Summary\n\n|---|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| | [HttpStatusException](/android/reference/com/google/android/gms/recaptcha/HttpStatusException#HttpStatusException(java.lang.String, int))([String](//developer.android.com/reference/java/lang/String.html) msg, int errorHttpStatus) Constructs a [HttpStatusException](/android/reference/com/google/android/gms/recaptcha/HttpStatusException) with the specified detail message and error code. |\n\n### Public Method Summary\n\n|-----|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| int | [getHttpErrorStatus](/android/reference/com/google/android/gms/recaptcha/HttpStatusException#getHttpErrorStatus())() Returns the status code of a failed HTTP request. |\n\n### Inherited Method Summary\n\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-------------------\n\n#### public **HttpStatusException** ([String](//developer.android.com/reference/java/lang/String.html) msg, int errorHttpStatus)\n\nConstructs a [HttpStatusException](/android/reference/com/google/android/gms/recaptcha/HttpStatusException)\nwith the specified detail message and error code. \n\n##### Parameters\n\n| msg | The detail message (which is saved for later retrieval by the [getMessage()](//developer.android.com/reference/java/lang/Throwable.html#getMessage()) method) |\n| errorHttpStatus | The status code of the failed HTTP request. |\n|-----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n\nPublic Methods\n--------------\n\n#### public int **getHttpErrorStatus** ()\n\nReturns the status code of a failed HTTP request."]]