parseHeaders()} to get assigned properly. * * @package Webdav * @version 1.0 */ 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." ); } } ?>