root/trunk/src/main/php/net/stubbles/ipo/request/stubRequestValueErrorFactory.php

Revision 1326, 0.7 kB (checked in by mikey, 5 months ago)

replaced stubRequestValueErrorException by more general exceptions

Line 
1 <?php
2 /**
3  * Interface for factories creating stubRequestValueErrors.
4  *
5  * @author      Frank Kleine <mikey@stubbles.net>
6  * @package     stubbles
7  * @subpackage  ipo_request
8  */
9 stubClassLoader::load('net::stubbles::ipo::request::stubRequestValueError');
10 /**
11  * Interface for factories creating stubRequestValueErrors.
12  *
13  * @package     stubbles
14  * @subpackage  ipo_request
15  */
16 interface stubRequestValueErrorFactory
17 {
18     /**
19      * creates the  RequestValueError with the id from the given source
20      *
21      * @param   string                 $id      id of RequestValueError to create
22      * @return  stubRequestValueError
23      */
24     public function create($id);
25 }
26 ?>
Note: See TracBrowser for help on using the browser.