Fix build

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@301447 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Richard Quadling 2010-07-21 16:48:15 +00:00
parent fdba617bc8
commit f1b4419dc7

View file

@ -173,7 +173,7 @@ class Exception
</para>
</note>
<example>
<title>Extending the Exception class (PHP V5.3.+)</title>
<title>Extending the Exception class (PHP 5.3.0+)</title>
<programlisting role="php">
<![CDATA[
<?php
@ -290,9 +290,11 @@ echo "\n\n";
]]>
</programlisting>
<note>
Versions of PHP 5, prior to PHP 5.3.0 do not support nesting of exceptions.
The following code fragment can be used as a replacement MyException class
if you wish to run this example.
<para>
Versions of PHP 5, prior to PHP 5.3.0 do not support nesting of exceptions.
The following code fragment can be used as a replacement MyException class
if you wish to run this example.
</para>
<programlisting role="php">
<![CDATA[
<?php