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 / Services / W3C / HTMLValidator / Error.php next >
Encoding:
PHP Script  |  2008-07-02  |  967 b   |  35 lines

  1. <?php
  2. /**
  3.  * This file contains a simple class for error messages returned from the validator.
  4.  * 
  5.  * PHP versions 5
  6.  * 
  7.  * @category Services
  8.  * @package  Services_W3C_HTMLValidator
  9.  * @author   Brett Bieber <brett.bieber@gmail.com>
  10.  * @license  http://www.opensource.org/licenses/bsd-license.php BSD
  11.  * @version  CVS: $id$
  12.  * @link     http://pear.php.net/package/Services_W3C_HTMLValidator
  13.  * @since    File available since Release 0.2.0
  14.  */
  15.  
  16. /**
  17.  * Extends from the Message class
  18.  */
  19. require_once 'Services/W3C/HTMLValidator/Message.php';
  20.  
  21. /**
  22.  * The message class holds an error response from the W3 validator.
  23.  * 
  24.  * @category Services
  25.  * @package  Services_W3C_HTMLValidator
  26.  * @author   Brett Bieber <brett.bieber@gmail.com>
  27.  * @license  http://www.opensource.org/licenses/bsd-license.php BSD
  28.  * @link     http://pear.php.net/package/Services_W3C_HTMLValidator
  29.  */
  30. class Services_W3C_HTMLValidator_Error extends Services_W3C_HTMLValidator_Message
  31. {
  32.     
  33. }
  34.  
  35. ?>