Home | History | Annotate | Download | only in http

Lines Matching refs:message

48      * Creates a new HttpException with a <tt>null</tt> detail message.
55 * Creates a new HttpException with the specified detail message.
57 * @param message the exception detail message
59 public HttpException(final String message) {
60 super(message);
64 * Creates a new HttpException with the specified detail message and cause.
66 * @param message the exception detail message
70 public HttpException(final String message, final Throwable cause) {
71 super(message);