|
Revision 1326, 0.7 kB
(checked in by mikey, 5 months ago)
|
replaced stubRequestValueErrorException by more general exceptions
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
stubClassLoader::load('net::stubbles::ipo::request::stubRequestValueError'); |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 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 |
?> |
|---|