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   * @version $Rev: 671827 $, $Date: 2008-06-26 10:49:48 +0200 (jeu, 26 jun 2008) $,
29   */
30  public class RequestTimeoutException extends RuntimeException {
31      private static final long serialVersionUID = 5546784978950631652L;
32  
33      private final Request request;
34  
35      /**
36       * Creates a new exception.
37       */
38      public RequestTimeoutException(Request request) {
39          if (request == null) {
40              throw new NullPointerException("request");
41          }
42          this.request = request;
43      }
44  
45      /**
46       * Creates a new exception.
47       */
48      public RequestTimeoutException(Request request, String s) {
49          super(s);
50          if (request == null) {
51              throw new NullPointerException("request");
52          }
53          this.request = request;
54      }
55  
56      /**
57       * Creates a new exception.
58       */
59      public RequestTimeoutException(Request request, String message,
60              Throwable cause) {
61          super(message);
62          initCause(cause);
63          if (request == null) {
64              throw new NullPointerException("request");
65          }
66          this.request = request;
67      }
68  
69      /**
70       * Creates a new exception.
71       */
72      public RequestTimeoutException(Request request, Throwable cause) {
73          initCause(cause);
74          if (request == null) {
75              throw new NullPointerException("request");
76          }
77          this.request = request;
78      }
79  
80      /**
81       * Returns the request which has timed out.
82       */
83      public Request getRequest() {
84          return request;
85      }
86  }