HttpExceptionpublic class HttpException extends Exception Signals that an HTTP exception has occurred. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public HttpException()Creates a new HttpException with a null detail message.
super();
| public HttpException(String message)Creates a new HttpException with the specified detail message.
super(message);
| public HttpException(String message, Throwable cause)Creates a new HttpException with the specified detail message and cause.
super(message);
ExceptionUtils.initCause(this, cause);
|
|