| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException com.quadcap.http.server22.HttpException
HttpException | public class HttpException extends IOException (Code) | | An HTTP exception object.
author: Stan Bailes |
detail | String detail(Code) | | The detail message for the exception.
|
replyCode | String replyCode(Code) | | The HTTP reply code to issue (default "200")
|
HttpException | public HttpException(String replyCode, String detail)(Code) | | Construct a new HttpException with the specified replyCode and detail
Parameters: replyCode - the HTTP completion replyCode Parameters: detail - the human readable message following the replyCode. |
HttpException | public HttpException(String detail)(Code) | | Construct a new HttpException with the default replyCode and the
specified detail message
Parameters: detail - the human readable error message. |
getDetail | public String getDetail()(Code) | | Get the detail message
the human readable detail message for this exception. |
getReplyCode | public String getReplyCode()(Code) | | Return the HTTP replyCode code.
the HTTP replyCode code. |
|
|
|