Package org.springframework.web.servlet
Class NoHandlerFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.servlet.NoHandlerFoundException
- All Implemented Interfaces:
- Serializable
By default when the DispatcherServlet can't find a handler for a request it
 sends a 404 response. However if its property "throwExceptionIfNoHandlerFound"
 is set to 
true this exception is raised and may be handled with
 a configured HandlerExceptionResolver.- Since:
- 4.0
- Author:
- Brian Clozel
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionNoHandlerFoundException(String httpMethod, String requestURL, HttpHeaders headers) Constructor for NoHandlerFoundException.
- 
Method SummaryModifier and TypeMethodDescriptionMethods inherited from class jakarta.servlet.ServletExceptiongetRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NoHandlerFoundExceptionConstructor for NoHandlerFoundException.- Parameters:
- httpMethod- the HTTP method
- requestURL- the HTTP request URL
- headers- the HTTP request headers
 
 
- 
- 
Method Details- 
getHttpMethod
- 
getRequestURL
- 
getHeaders
 
-