[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-28 UTC."],[[["\u003cp\u003e\u003ccode\u003eInternalServerErrorException\u003c/code\u003e is a class that extends \u003ccode\u003eServiceException\u003c/code\u003e and is designed to represent an internal server error, corresponding to a 500 HTTP response.\u003c/p\u003e\n"],["\u003cp\u003eThis class provides multiple constructors to handle various scenarios, including passing a message, a cause, or a combination of status message, reason, and domain, and a throwable cause.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eInternalServerErrorException\u003c/code\u003e class inherits methods from \u003ccode\u003ejava.lang.Object\u003c/code\u003e, such as \u003ccode\u003eclone\u003c/code\u003e, \u003ccode\u003eequals\u003c/code\u003e, \u003ccode\u003ehashCode\u003c/code\u003e, and others.\u003c/p\u003e\n"],["\u003cp\u003eThere are seven different constructors provided to create an instance of \u003ccode\u003eInternalServerErrorException\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# InternalServerErrorException\n\ncom.google.api.server.spi.response\n\nClass InternalServerErrorException\n----------------------------------\n\n- java.lang.Object\n-\n - ServiceException\n -\n - com.google.api.server.spi.response.InternalServerErrorException\n\n-\n\n *** ** * ** ***\n\n \u003cbr /\u003e\n\n ```\n public class InternalServerErrorException\n extends ServiceException\n ``` \nInternal server exception that is mapped to a 500 response. \n-\n -\n\n ### Constructor Summary\n\n \u003c!-- --\u003e\n\n -\n\n ### Method Summary\n\n -\n\n ### Methods inherited from class java.lang.Object\n\n`clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait` \n-\n -\n\n ### Constructor Detail\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String message)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.Throwable cause)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String message,\n java.lang.Throwable cause)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String statusMessage,\n java.lang.String reason)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.Throwable cause)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.String domain)\n ```\n\n\n -\n\n #### InternalServerErrorException\n\n ```\n public InternalServerErrorException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.String domain,\n java.lang.Throwable cause)\n ```"]]