- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.helidon.webserver.HttpException
-
- io.helidon.webserver.NotFoundException
-
- All Implemented Interfaces:
Serializable
public class NotFoundException extends HttpException
A runtime exception indicating anot found
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFoundException(String message)
CreatesNotFoundException
.NotFoundException(String message, Throwable cause)
CreatesNotFoundException
.
-
Method Summary
-
Methods inherited from class io.helidon.webserver.HttpException
status
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotFoundException
public NotFoundException(String message)
CreatesNotFoundException
.- Parameters:
message
- the message
-
NotFoundException
public NotFoundException(String message, Throwable cause)
CreatesNotFoundException
.- Parameters:
message
- the messagecause
- the cause of this exception
-
-