Files
mongo-php-driver/docs/api/MongoDB/Write/WriteError.php
2014-06-12 03:19:17 -04:00

17 lines
298 B
PHP

<?php
namespace MongoDB\Write;
interface WriteError extends \MongoDB\ServerError
{
/**
* @return integer Batch index of the error
*/
function getIndex();
/**
* @return array|object Operation or document responsible for the error
*/
function getOperation();
}