We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63178a5 commit d1a42f0Copy full SHA for d1a42f0
1 file changed
src/main/com/mongodb/MongoInterruptedException.java
@@ -25,10 +25,23 @@
25
public class MongoInterruptedException extends MongoException {
26
private static final long serialVersionUID = -4110417867718417860L;
27
28
+ /**
29
+ * Construct a new instance.
30
+ *
31
+ * @param e the cause
32
+ */
33
+ @Deprecated
34
public MongoInterruptedException(final InterruptedException e) {
35
super("A driver operation has been interrupted", e);
36
}
37
38
39
40
41
+ * @param message the message
42
43
44
45
public MongoInterruptedException(final String message, final InterruptedException e) {
46
super(message, e);
47
0 commit comments