<?php
/*
* --------------------------------------------------------------------------------------------------------------------------
* Program : HTML Form Field Generator, PHP Class Library
* Files : htmlform.inc.php, htmlform_base.inc.php, htmlform_exc.inc.php
* Author : Lasantha Samarakoon
* Date released : Monday, September 21, 2009
* Email : hide@address.com
* Licence : http://www.gnu.org/licenses/gpl.txt
* --------------------------------------------------------------------------------------------------------------------------
*
* This program is a freeware, which falls under GNU Genral Public Licence.
* ---------------------------------------------------------------------------------------------------------------------------
* You can modify this program, without any permission from the author. But be kind enough to send the updated version to the
* author through the above mentioned Email address.
* ---------------------------------------------------------------------------------------------------------------------------
* Documentation:
* Please refer the test.php file for hints on the usage of this class library.
* ---------------------------------------------------------------------------------------------------------------------------
* ************************************* PROUD TO BE A SRI LANKAN...!!! ******************************************************
*/
// exceptions
class NullElementException extends Exception {
function __construct() {parent::__construct("Element cannot be null");}
}
class InvalidParameterException extends Exception {
function __construct($req) {parent::__construct("Invalid parameter entered. Required: $req");}
}
?>