mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00

https://jira.mongodb.org/browse/PHPC-1532 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@349039 c90b9560-bf6c-de11-be94-00142212c4b1
69 lines
3.8 KiB
XML
69 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<book xml:id="mongodb.exceptions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<titleabbrev>MongoDB\Driver\Exception</titleabbrev>
|
|
<title>Exception classes</title>
|
|
|
|
&reference.mongodb.mongodb.driver.exception.authenticationexception;
|
|
&reference.mongodb.mongodb.driver.exception.bulkwriteexception;
|
|
&reference.mongodb.mongodb.driver.exception.commandexception;
|
|
&reference.mongodb.mongodb.driver.exception.connectionexception;
|
|
&reference.mongodb.mongodb.driver.exception.connectiontimeoutexception;
|
|
&reference.mongodb.mongodb.driver.exception.encryptionexception;
|
|
&reference.mongodb.mongodb.driver.exception.exception;
|
|
&reference.mongodb.mongodb.driver.exception.executiontimeoutexception;
|
|
&reference.mongodb.mongodb.driver.exception.invalidargumentexception;
|
|
&reference.mongodb.mongodb.driver.exception.logicexception;
|
|
&reference.mongodb.mongodb.driver.exception.runtimeexception;
|
|
&reference.mongodb.mongodb.driver.exception.serverexception;
|
|
&reference.mongodb.mongodb.driver.exception.sslconnectionexception;
|
|
&reference.mongodb.mongodb.driver.exception.unexpectedvalueexception;
|
|
&reference.mongodb.mongodb.driver.exception.writeexception;
|
|
|
|
<article xml:id="mongodb.exceptions.tree">
|
|
<titleabbrev>Class Tree</titleabbrev>
|
|
<title>MongoDB Exception Class Tree</title>
|
|
|
|
<para>
|
|
The class hierarchy for MongoDB exceptions is modeled after that of the
|
|
<link linkend="spl.exceptions">SPL Exceptions</link>. Base classes extend
|
|
their SPL counterpart and all exception classes in the extension implement
|
|
the <classname>MongoDB\Driver\Exception\Exception</classname> interface.
|
|
</para>
|
|
|
|
<itemizedlist>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\LogicException</classname> (extends <classname>LogicException</classname>)</simpara></listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\InvalidArgumentException</classname> (extends <classname>InvalidArgumentException</classname>)</simpara></listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\UnexpectedValueException</classname> (extends <classname>UnexpectedValueException</classname>)</simpara></listitem>
|
|
<listitem>
|
|
<simpara><classname>MongoDB\Driver\Exception\RuntimeException</classname> (extends <classname>RuntimeException</classname>)</simpara>
|
|
<itemizedlist>
|
|
<listitem>
|
|
<simpara><classname>MongoDB\Driver\Exception\ConnectionException</classname></simpara>
|
|
<itemizedlist>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\AuthenticationException</classname></simpara></listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\ConnectionTimeoutException</classname></simpara></listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\SSLConnectionException</classname> (deprecated)</simpara></listitem>
|
|
</itemizedlist>
|
|
</listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\EncryptionException</classname></simpara></listitem>
|
|
<listitem>
|
|
<simpara><classname>MongoDB\Driver\Exception\ServerException</classname></simpara>
|
|
<itemizedlist>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\CommandException</classname></simpara></listitem>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\ExecutionTimeoutException</classname></simpara></listitem>
|
|
<listitem>
|
|
<simpara><classname>MongoDB\Driver\Exception\WriteException</classname></simpara>
|
|
<itemizedlist>
|
|
<listitem><simpara><classname>MongoDB\Driver\Exception\BulkWriteException</classname></simpara></listitem>
|
|
</itemizedlist>
|
|
</listitem>
|
|
</itemizedlist>
|
|
</listitem>
|
|
</itemizedlist>
|
|
</listitem>
|
|
</itemizedlist>
|
|
</article>
|
|
|
|
</book>
|