Path

ez components / documentation / api reference / 2007.2.1 / image


eZ Components 2007.2.1

ImageAnalysis

[ Tutorial ] [ Class tree ] [ Element index ] [ ChangeLog ] [ Credits ]

Source for file invalid_handler.php

Documentation is available at invalid_handler.php

 1. <?php
 2. /**
 3.  * File containing the ezcImageAnalyzerInvalidHandlerException.
 4.  * 
 5.  * @package ImageAnalysis
 6.  * @version 1.1.2
 7.  * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
 8.  * @license http://ez.no/licenses/new_bsd New BSD License
 9.  */
10.  
11. /**
12.  * A registered handler class does not exist or does not inherit from ezcImageAnalyzerHandler.
13.  *
14.  * @package ImageAnalysis
15.  * @version 1.1.2
16.  */
17. class ezcImageAnalyzerInvalidHandlerException extends ezcImageAnalyzerException
18. {
19.     /**
20.      * Creates a new ezcImageAnalyzerInvalidHandlerException.
21.      * 
22.      * @param string $handlerClass Invalid class name.
23.      * @return void 
24.      */
25.     function __construct$handlerClass )
26.     {
27.         parent::__construct"The registered handler class '{$handlerClass}does not exist or does not inherit from ezcImageAnalyzerHandler.);
28.     }
29. }
30.  
31. ?>
Last updated: Thu, 31 Jan 2008