1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 *
19 */
20 package org.apache.mina.filter.reqres;
21
22 import org.apache.mina.core.RuntimeIoException;
23
24 /**
25 * An {@link RuntimeIoException} which is thrown when a {@link Request} is timed out.
26 *
27 * @author <a href="http://mina.apache.org">Apache MINA Project</a>
28 */
29 public class RequestTimeoutException extends RuntimeException {
30 private static final long serialVersionUID = 5546784978950631652L;
31
32 private final Request request;
33
34 /**
35 * Creates a new exception.
36 */
37 public RequestTimeoutException(Request request) {
38 if (request == null) {
39 throw new IllegalArgumentException("request");
40 }
41 this.request = request;
42 }
43
44 /**
45 * Creates a new exception.
46 */
47 public RequestTimeoutException(Request request, String s) {
48 super(s);
49 if (request == null) {
50 throw new IllegalArgumentException("request");
51 }
52 this.request = request;
53 }
54
55 /**
56 * Creates a new exception.
57 */
58 public RequestTimeoutException(Request request, String message, Throwable cause) {
59 super(message);
60 initCause(cause);
61 if (request == null) {
62 throw new IllegalArgumentException("request");
63 }
64 this.request = request;
65 }
66
67 /**
68 * Creates a new exception.
69 */
70 public RequestTimeoutException(Request request, Throwable cause) {
71 initCause(cause);
72 if (request == null) {
73 throw new IllegalArgumentException("request");
74 }
75 this.request = request;
76 }
77
78 /**
79 * Returns the request which has timed out.
80 */
81 public Request getRequest() {
82 return request;
83 }
84 }