* $server->options->pathFactory = 'myPathFactory'; * * * @package Webdav * @version 1.0alpha1 */ class ezcWebdavBrokenRequestUriException extends ezcWebdavException { /** * Constructor * * @param string $uri */ public function __construct( $uri ) { parent::__construct( "URI '{$uri}' could not be handled by path factory." ); } } ?>