Class NoHandlerFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.servlet.NoHandlerFoundException
- All Implemented Interfaces:
Serializable, org.springframework.web.ErrorResponse
public class NoHandlerFoundException
extends jakarta.servlet.ServletException
implements org.springframework.web.ErrorResponse
Thrown when the
DispatcherServlet can't find a handler for a request,
which may be handled with a configured HandlerExceptionResolver.- Since:
- 4.0
- Author:
- Brian Clozel
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.web.ErrorResponse
org.springframework.web.ErrorResponse.Builder, org.springframework.web.ErrorResponse.Interceptor -
Constructor Summary
ConstructorsConstructorDescriptionNoHandlerFoundException(String httpMethod, String requestURL, org.springframework.http.HttpHeaders headers) Constructor for NoHandlerFoundException. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ProblemDetailgetBody()org.springframework.http.HttpHeadersReturn headers to use for the response.org.springframework.http.HttpHeadersReturn the headers of the request.org.springframework.http.HttpStatusCodeMethods inherited from class jakarta.servlet.ServletException
getRootCauseMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.springframework.web.ErrorResponse
getDetailMessageArguments, getDetailMessageArguments, getDetailMessageCode, getTitleMessageCode, getTypeMessageCode, updateAndGetBody
-
Constructor Details
-
NoHandlerFoundException
-
-
Method Details
-
getStatusCode
public org.springframework.http.HttpStatusCode getStatusCode()- Specified by:
getStatusCodein interfaceorg.springframework.web.ErrorResponse
-
getHttpMethod
-
getRequestURL
-
getHeaders
public org.springframework.http.HttpHeaders getHeaders()Return headers to use for the response.Note: As of 6.0 this method overlaps with
ErrorResponse.getHeaders()and therefore no longer returns request headers. UsegetRequestHeaders()instead for request headers.- Specified by:
getHeadersin interfaceorg.springframework.web.ErrorResponse
-
getRequestHeaders
public org.springframework.http.HttpHeaders getRequestHeaders()Return the headers of the request.- Since:
- 6.0.3
-
getBody
public org.springframework.http.ProblemDetail getBody()- Specified by:
getBodyin interfaceorg.springframework.web.ErrorResponse
-