-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathexceptions.xml
69 lines (64 loc) · 3.95 KB
/
exceptions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 3e871fe7eab38f9b0398569c57a1dd0c21e69652 Maintainer: Fan2Shrek Status: ready -->
<!-- Reviewed: yes -->
<part xml:id="mongodb.exceptions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<titleabbrev>MongoDB\Driver\Exception</titleabbrev>
<title>Les classes d'exception</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>Arbre de classes</titleabbrev>
<title>L'arbre des exceptions MongoDB</title>
<para>
La hiérarchie de classes pour les exceptions MongoDB est modélisée d'après
celle des <link linkend="spl.exceptions">Exceptions SPL</link>. Les classes
de base étendent leur homologue SPL et toutes les classes d'exception de
l'extension implémentent l'interface <classname>MongoDB\Driver\Exception\Exception</classname>.
</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> (dépréciée)</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> (dépréciée)</simpara>
<itemizedlist>
<listitem><simpara><classname>MongoDB\Driver\Exception\BulkWriteException</classname></simpara></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</article>
</part>