home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / php / pear / Cache / Error.php < prev    next >
PHP Script  |  2001-03-08  |  2KB  |  51 lines

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP version 4.0                                                      |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group             |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.0 of the PHP license,       |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Authors: Ulf Wendel <ulf.wendel@phpdoc.de>                           |
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: Error.php,v 1.3 2001/03/08 22:20:55 sbergmann Exp $
  19.  
  20. require_once "PEAR.php";
  21.  
  22. /**
  23. * Cache Error class
  24. * @package Cache
  25. */
  26. class Cache_Error extends PEAR_Error {
  27.  
  28.  
  29.   /**
  30.   * Prefix of all error messages.
  31.   * 
  32.   * @var  string
  33.   */
  34.   var $error_message_prefix = "Cache-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 Cache_Error($msg, $file = __FILE__, $line = __LINE__) {
  44.     
  45.     $this->PEAR_Error(sprintf("%s [%s on line %d].", $msg, $file, $line));
  46.     
  47.   } // end func Cache_Error
  48.   
  49. } // end class Cache_Error
  50. ?>