Package com.mongodb
Class WriteConcernError
- java.lang.Object
-
- com.mongodb.WriteConcernError
-
public class WriteConcernError extends Object
An error representing a failure by the server to apply the requested write concern to the bulk operation.- Since:
- 2.12
- MongoDB documentation
- Write Concern
-
-
Constructor Summary
Constructors Constructor Description WriteConcernError(int code, String message, DBObject details)
Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getCode()
Gets the code associated with this error.DBObject
getDetails()
Gets the details associated with this error.String
getMessage()
Gets the message associated with this error.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getCode
public int getCode()
Gets the code associated with this error.- Returns:
- the code
-
getMessage
public String getMessage()
Gets the message associated with this error.- Returns:
- the message
-
getDetails
public DBObject getDetails()
Gets the details associated with this error. This document will not be null, but may be empty.- Returns:
- the details
-
-