mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 22:32:12 +02:00
17 lines
242 B
PHP
17 lines
242 B
PHP
<?php
|
|
|
|
namespace MongoDB;
|
|
|
|
interface ServerError extends ServerResult
|
|
{
|
|
/**
|
|
* @return integer Server error code
|
|
*/
|
|
function getCode();
|
|
|
|
/**
|
|
* @return string Server error message
|
|
*/
|
|
function getMessage();
|
|
}
|