parseHeaders()} to get assigned properly. * * @package Webdav * @version 1.0alpha1 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ class ezcWebdavUnknownHeaderException extends ezcWebdavException { /** * Creates a new exception. * * @param string $headerName Name of the affected header. * @param string $value Contained value. * @param string $expectedValue Expected values. * @return void */ public function __construct( $headerName ) { parent::__construct( "The header '$headerName' has no equivalent in the header map." ); } } ?>