Home | History | Annotate | Download | only in http

Lines Matching refs:message

53      * Creates a new HttpException with a <tt>null</tt> detail message.
60 * Creates a new HttpException with the specified detail message.
62 * @param message the exception detail message
64 public HttpException(final String message) {
65 super(message);
69 * Creates a new HttpException with the specified detail message and cause.
71 * @param message the exception detail message
75 public HttpException(final String message, final Throwable cause) {
76 super(message);