Browse Source

[ZF-7264]Zend_Server_Reflection_Exception extends Zend_Exception instead of Zend_Server_Exception

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16757 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 years ago
parent
commit
34672de60c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      library/Zend/Server/Reflection/Exception.php

+ 3 - 3
library/Zend/Server/Reflection/Exception.php

@@ -19,9 +19,9 @@
  */
 
 /**
- * Zend_Exception
+ * @see Zend_Server_Exception
  */
-require_once 'Zend/Exception.php';
+require_once 'Zend/Server/Exception.php';
 
 /**
  * Zend_Server_Reflection exceptions
@@ -33,6 +33,6 @@ require_once 'Zend/Exception.php';
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  * @version $Id$
  */
-class Zend_Server_Reflection_Exception extends Zend_Exception
+class Zend_Server_Reflection_Exception extends Zend_Server_Exception
 {
 }