View Javadoc

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 The Apache MINA Project (dev@mina.apache.org)
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 NullPointerException("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 NullPointerException("request");
51          }
52          this.request = request;
53      }
54  
55      /**
56       * Creates a new exception.
57       */
58      public RequestTimeoutException(Request request, String message,
59              Throwable cause) {
60          super(message);
61          initCause(cause);
62          if (request == null) {
63              throw new NullPointerException("request");
64          }
65          this.request = request;
66      }
67  
68      /**
69       * Creates a new exception.
70       */
71      public RequestTimeoutException(Request request, Throwable cause) {
72          initCause(cause);
73          if (request == null) {
74              throw new NullPointerException("request");
75          }
76          this.request = request;
77      }
78  
79      /**
80       * Returns the request which has timed out.
81       */
82      public Request getRequest() {
83          return request;
84      }
85  }