Timeout exceptions as RuntimeExceptions

Issue: SPR-14669
This commit is contained in:
Juergen Hoeller
2016-09-15 08:54:17 +02:00
parent 765b47246a
commit 6dc1898dbb
3 changed files with 7 additions and 4 deletions

View File

@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.context.request.async;
/**
@@ -29,6 +30,6 @@ package org.springframework.web.context.request.async;
* @since 4.2.8
*/
@SuppressWarnings("serial")
public class AsyncRequestTimeoutException extends Exception {
public class AsyncRequestTimeoutException extends RuntimeException {
}