freenet-router |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 2 | simandl | <?php |
2 | |
||
3 | namespace Phem\Libraries\Forms; |
||
4 | |
||
5 | /** |
||
6 | * @author Jakub PetrĹžĂlka <petrzilka@czweb.net> |
||
7 | */ |
||
8 | class FormBuilderException extends \Exception |
||
9 | { |
||
10 | |
||
11 | public function __construct($message, $code = 0, Exception $previous = null) |
||
12 | { |
||
13 | parent::__construct($message, $code, $previous); |
||
14 | } |
||
15 | |
||
16 | } |