home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / HTML / Template / IT_Error.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  1.7 KB  |  52 lines

  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // | Copyright (c) 1997-2005 Ulf Wendel, Pierre-Alain Joye                |
  5. // +----------------------------------------------------------------------+
  6. // | This source file is subject to the New BSD license, That is bundled  |
  7. // | with this package in the file LICENSE, and is available through      |
  8. // | the world-wide-web at                                                |
  9. // | http://www.opensource.org/licenses/bsd-license.php                   |
  10. // | If you did not receive a copy of the new BSD license and are unable  |
  11. // | to obtain it through the world-wide-web, please send a note to       |
  12. // | pajoye@php.net so we can mail you a copy immediately.                |
  13. // +----------------------------------------------------------------------+
  14. // | Author: Ulf Wendel <ulf.wendel@phpdoc.de>                            |
  15. // |         Pierre-Alain Joye <pajoye@php.net>                           |
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: IT_Error.php,v 1.3 2006/08/17 15:44:31 dsp Exp $
  19.  
  20. require_once "PEAR.php";
  21.  
  22. /**
  23. * IT[X] Error class
  24. * @package HTML_Template_IT
  25. */
  26. class IT_Error extends PEAR_Error {
  27.  
  28.  
  29.   /**
  30.   * Prefix of all error messages.
  31.   * 
  32.   * @var  string
  33.   */
  34.   var $error_message_prefix = "IntegratedTemplate Error: ";
  35.   
  36.   /**
  37.   * Creates an cache error object.
  38.   * 
  39.   * @param  string  error message
  40.   * @param  string  file where the error occured
  41.   * @param  string  linenumber where the error occured
  42.   */
  43.   function IT_Error($msg, $file = __FILE__, $line = __LINE__) {
  44.     
  45.     $this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, $line));
  46.     
  47.   } // end func IT_Error
  48.   
  49. } // end class IT_Error
  50. ?>
  51.