com.mongodb
Class CommandResult
java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
java.util.LinkedHashMap<String,Object>
org.bson.BasicBSONObject
com.mongodb.BasicDBObject
com.mongodb.CommandResult
- All Implemented Interfaces:
- DBObject, Serializable, Cloneable, Map<String,Object>, BSONObject
public class CommandResult
- extends BasicDBObject
A simple wrapper for the result of getLastError() calls and other commands
- See Also:
- Serialized Form
Method Summary |
String |
getErrorMessage()
gets the "errmsg" field which holds the error message |
MongoException |
getException()
utility method to create an exception with the command name |
boolean |
ok()
gets the "ok" field which is the result of the command |
void |
throwOnError()
throws an exception containing the cmd name, in case the command failed, or the "err/code" information |
Methods inherited from class org.bson.BasicBSONObject |
containsField, containsKey, equals, get, getBoolean, getBoolean, getDouble, getInt, getInt, getLong, getString, put, putAll, putAll, removeField, toMap |
ok
public boolean ok()
- gets the "ok" field which is the result of the command
- Returns:
getErrorMessage
public String getErrorMessage()
- gets the "errmsg" field which holds the error message
- Returns:
getException
public MongoException getException()
- utility method to create an exception with the command name
- Returns:
throwOnError
public void throwOnError()
throws MongoException
- throws an exception containing the cmd name, in case the command failed, or the "err/code" information
- Throws:
MongoException