mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 22:32:12 +02:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
namespace MongoDB\Write;
|
|
|
|
interface WriteConcernError extends \MongoDB\ServerError
|
|
{
|
|
/**
|
|
* @return array Additional metadata for the error (e.g. {"wtimeout": true})
|
|
*/
|
|
function getInfo();
|
|
}
|