[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / ja / module_specs / Zend_Exception-Basic.xml
blobfc96fcfdcfa21516cd4dcdc5ddba475d3e8613fd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <!-- EN-Revision: 21586 -->
4 <sect1 id="zend.exception.basic">
5     <title>基本的な使用法</title>
7     <para>
8         <classname>Zend_Exception</classname> はZend Framework でスローされる例外全ての基底クラスです。
9         このクラスは、 <acronym>PHP</acronym> の基本的な <classname>Exception</classname> クラスを拡張します。
10     </para>
12     <example id="zend.exception.catchall.example">
13         <title>Zend Framework の例外全てを捕捉する</title>
15         <programlisting language="php"><![CDATA[
16 try {
17     // あなたのコード
18 } catch (Zend_Exception $e) {
19     // 何らかの処理
21 ]]></programlisting>
22     </example>
24     <example id="zend.exception.catchcomponent.example">
25         <title>Zend Framework の特定のコンポーネントでスローされた例外を捕捉する</title>
27         <programlisting language="php"><![CDATA[
28 try {
29     // あなたのコード
30 } catch (Zend_Db_Exception $e) {
31     // 何らかの処理
33 ]]></programlisting>
34     </example>
35 </sect1>
36 <!--
37 vim:se ts=4 sw=4 et:
38 -->