Class AbstractController.HttpNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.hybris.platform.acceleratorstorefrontcommons.controllers.AbstractController.HttpNotFoundException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- AbstractController
@ResponseStatus(NOT_FOUND)
public static class AbstractController.HttpNotFoundException
extends RuntimeException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorHttpNotFoundException(String message) HttpNotFoundException(String message, Throwable cause) HttpNotFoundException(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HttpNotFoundException
public HttpNotFoundException()Default constructor -
HttpNotFoundException
- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
HttpNotFoundException
- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
HttpNotFoundException
- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-