[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / en / module_specs / Zend_Exception-Basic.xml
blobc6dd9cf2d55d4eeb301248e9daf6b346857abe27
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect1 id="zend.exception.basic">
4     <title>Basic usage</title>
6     <para>
7         <classname>Zend_Exception</classname> is the base class for all exceptions thrown by Zend
8         Framework. This class extends the base <classname>Exception</classname> class of
9         <acronym>PHP</acronym>.
10     </para>
12     <example id="zend.exception.catchall.example">
13         <title>Catch all Zend Framework exceptions</title>
15         <programlisting language="php"><![CDATA[
16 try {
17     // your code
18 } catch (Zend_Exception $e) {
19     // do something
21 ]]></programlisting>
22     </example>
24     <example id="zend.exception.catchcomponent.example">
25         <title>Catch exceptions thrown by a specific component of Zend Framework</title>
27         <programlisting language="php"><![CDATA[
28 try {
29     // your code
30 } catch (Zend_Db_Exception $e) {
31     // do something
33 ]]></programlisting>
34     </example>
35 </sect1>
36 <!--
37 vim:se ts=4 sw=4 et:
38 -->