* configurations[0]->pathFactory = * new ezcWebdavBasicPathFactory( '/no/uri/path' ); * ?> * * * @see ezcWebdavBasicPathFactory * @package Webdav * @version //autogentag// */ class ezcWebdavBrokenBaseUriException extends ezcWebdavException { /** * Initializes the exception with the given $uri and optional $msg. * * @param string $uri * @param string $msg */ public function __construct( $uri, $msg = null ) { parent::__construct( "The string '{$uri}' is not a valid URI to initialize the path factory." . ( $msg !== null ? " $msg" : '' ) ); } } ?>