* $server->options->pathFactory = 'myPathFactory'; * * * @package Webdav * @version //autogentag// */ class ezcWebdavBrokenRequestUriException extends ezcWebdavException { /** * Initializes the exception with the given $uri and sets the exception * message from it. * * @param string $uri */ public function __construct( $uri ) { parent::__construct( "URI '{$uri}' could not be handled by path factory." ); } } ?>