[[["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\u003eNotFoundException\u003c/code\u003e is a class that extends \u003ccode\u003eServiceException\u003c/code\u003e and is part of the \u003ccode\u003ecom.google.api.server.spi.response\u003c/code\u003e package.\u003c/p\u003e\n"],["\u003cp\u003eThis exception is specifically designed to represent a "not found" error, which corresponds to a 404 HTTP response.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eNotFoundException\u003c/code\u003e class provides several constructors that allow for various levels of detail when creating the exception, including a simple message, a cause, a status message, a reason, and a domain.\u003c/p\u003e\n"],["\u003cp\u003eThe class inherits methods from the \u003ccode\u003ejava.lang.Object\u003c/code\u003e class, such as \u003ccode\u003eclone\u003c/code\u003e, \u003ccode\u003eequals\u003c/code\u003e, \u003ccode\u003ehashCode\u003c/code\u003e, and \u003ccode\u003etoString\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# NotFoundException\n\ncom.google.api.server.spi.response\n\nClass NotFoundException\n-----------------------\n\n- java.lang.Object\n-\n - ServiceException\n -\n - com.google.api.server.spi.response.NotFoundException\n\n-\n\n *** ** * ** ***\n\n \u003cbr /\u003e\n\n ```\n public class NotFoundException\n extends ServiceException\n ``` \nNot found exception that is mapped to a 404 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 #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String message)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.Throwable cause)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String message,\n java.lang.Throwable cause)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String statusMessage,\n java.lang.String reason)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.Throwable cause)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.String domain)\n ```\n\n\n -\n\n #### NotFoundException\n\n ```\n public NotFoundException(java.lang.String statusMessage,\n java.lang.String reason,\n java.lang.String domain,\n java.lang.Throwable cause)\n ```"]]