Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
QueryFailedException |
|
| 1.0;1 |
1 | /* | |
2 | * #%L | |
3 | * QueryFailedException.java - mongodb-async-driver - Allanbank Consulting, Inc. | |
4 | * %% | |
5 | * Copyright (C) 2011 - 2014 Allanbank Consulting, Inc. | |
6 | * %% | |
7 | * Licensed under the Apache License, Version 2.0 (the "License"); | |
8 | * you may not use this file except in compliance with the License. | |
9 | * You may obtain a copy of the License at | |
10 | * | |
11 | * http://www.apache.org/licenses/LICENSE-2.0 | |
12 | * | |
13 | * Unless required by applicable law or agreed to in writing, software | |
14 | * distributed under the License is distributed on an "AS IS" BASIS, | |
15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
16 | * See the License for the specific language governing permissions and | |
17 | * limitations under the License. | |
18 | * #L% | |
19 | */ | |
20 | package com.allanbank.mongodb.error; | |
21 | ||
22 | import com.allanbank.mongodb.client.message.Reply; | |
23 | ||
24 | /** | |
25 | * Exception raised when a query fails. | |
26 | * | |
27 | * @api.yes This class is part of the driver's API. Public and protected members | |
28 | * will be deprecated for at least 1 non-bugfix release (version | |
29 | * numbers are <major>.<minor>.<bugfix>) before being | |
30 | * removed or modified. | |
31 | * @copyright 2011-2013, Allanbank Consulting, Inc., All Rights Reserved | |
32 | */ | |
33 | public class QueryFailedException extends ReplyException { | |
34 | ||
35 | /** The serialization version for the class. */ | |
36 | private static final long serialVersionUID = -3588171889388956082L; | |
37 | ||
38 | /** | |
39 | * Create a new QueryFailedException. | |
40 | * | |
41 | * @param reply | |
42 | * The reply that raised the exception. | |
43 | * @param cause | |
44 | * If known the cause of the exception. | |
45 | */ | |
46 | public QueryFailedException(final Reply reply, final Throwable cause) { | |
47 | 5 | super(reply, cause); |
48 | 5 | } |
49 | ||
50 | } |