Author: Derick Rethans
Date: 2006-01-13 10:04:47 +0100 (Fri, 13 Jan 2006)
New Revision: 1809

Log:
- Fixed exception documentation after moving to new base exceptions.

Modified:
   packages/Configuration/trunk/src/file_reader.php
   packages/Configuration/trunk/src/file_writer.php
   packages/Translation/trunk/src/backends/cache_backend.php
   packages/Translation/trunk/src/backends/ts_backend.php
   packages/UserInput/trunk/src/input_form.php

Modified: packages/Configuration/trunk/src/file_reader.php
===================================================================
--- packages/Configuration/trunk/src/file_reader.php    2006-01-13 09:00:23 UTC 
(rev 1808)
+++ packages/Configuration/trunk/src/file_reader.php    2006-01-13 09:04:47 UTC 
(rev 1809)
@@ -116,8 +116,8 @@
      *
      * The options are specified in a associative array in the form 
'optionName' => value.
      *
-     * @throws ezcBaseConfigException if you try to set a non existent setting 
or if
-     *                                you specify a value out of range for 
that setting.
+     * @throws ezcBaseSettingNotFoundException if you try to set a non 
existent setting.
+     * @throws ezcBaseSettingValueException if you specify a value out of 
range for a setting.
      * @param array(string=>mixed) $configurationData
      * @return void
      */

Modified: packages/Configuration/trunk/src/file_writer.php
===================================================================
--- packages/Configuration/trunk/src/file_writer.php    2006-01-13 09:00:23 UTC 
(rev 1808)
+++ packages/Configuration/trunk/src/file_writer.php    2006-01-13 09:04:47 UTC 
(rev 1809)
@@ -289,8 +289,8 @@
      *
      * The options are specified in a associative array in the form 
'optionName' => value.
      *
-     * @throws ezcBaseConfigException if you try to set a non existent setting 
or if
-     *                                you specify a value out of range for 
that setting.
+     * @throws ezcBaseSettingNotFoundException if you try to set a non 
existent setting.
+     * @throws ezcBaseSettingValueException if you specify a value out of 
range for a setting.
      * @param array(string=>mixed) $configurationData
      * @return void
      */

Modified: packages/Translation/trunk/src/backends/cache_backend.php
===================================================================
--- packages/Translation/trunk/src/backends/cache_backend.php   2006-01-13 
09:00:23 UTC (rev 1808)
+++ packages/Translation/trunk/src/backends/cache_backend.php   2006-01-13 
09:04:47 UTC (rev 1809)
@@ -106,7 +106,7 @@
      * ezcBaseConfigException if this setOptions() method is called.
      *
      * @param array $configurationData
-     * @throws ezcBaseConfigException when an unknown setting is passed.
+     * @throws ezcBaseSettingNotFoundException if an unknown setting is passed.
      * @return void
      */
     public function setOptions( array $configurationData )

Modified: packages/Translation/trunk/src/backends/ts_backend.php
===================================================================
--- packages/Translation/trunk/src/backends/ts_backend.php      2006-01-13 
09:00:23 UTC (rev 1808)
+++ packages/Translation/trunk/src/backends/ts_backend.php      2006-01-13 
09:04:47 UTC (rev 1809)
@@ -159,7 +159,7 @@
      * </code>
      *
      * @param array $configurationData
-     * @throws ezcBaseConfigException when an unknown setting is passed.
+     * @throws ezcBaseSettingNotFoundException if an unknown setting is passed.
      * @return void
      */
     public function setOptions( array $configurationData )

Modified: packages/UserInput/trunk/src/input_form.php
===================================================================
--- packages/UserInput/trunk/src/input_form.php 2006-01-13 09:00:23 UTC (rev 
1808)
+++ packages/UserInput/trunk/src/input_form.php 2006-01-13 09:04:47 UTC (rev 
1809)
@@ -381,7 +381,7 @@
      * that this function does is return the exception
      * ezcBasePropertyReadOnlyException.
      *
-     * @throws ezcBasePropertyReadOnlyException for every call to this
+     * @throws ezcBasePropertyPermissionException for every call to this
      *         function.
      * @param string $propertyName
      * @param mixed  $newValue

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to