We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e93ea commit 2686904Copy full SHA for 2686904
driver-core/src/main/com/mongodb/MongoOperationTimeoutException.java
@@ -38,11 +38,21 @@
38
public final class MongoOperationTimeoutException extends MongoTimeoutException {
39
private static final long serialVersionUID = 1L;
40
41
+ /**
42
+ * Construct a new instance.
43
+ *
44
+ * @param message the message
45
+ */
46
public MongoOperationTimeoutException(final String message) {
47
super(message);
48
}
49
- public MongoOperationTimeoutException(final String message, final Throwable t) {
- super(message, t);
50
51
+ * Construct a new instance
52
53
+ * @param cause the cause
54
55
+ public MongoOperationTimeoutException(final String message, final Throwable cause) {
56
+ super(message, cause);
57
58
0 commit comments