--- _PluginDependencies.groovy.orig 2009-12-23 11:23:58.000000000 -0800 +++ _PluginDependencies.groovy 2010-01-25 17:38:23.000000000 -0800 @@ -1457,9 +1457,9 @@ // determine if the file exists SVNNodeKind nodeKind = repo.checkPath(file , -1) if (nodeKind == SVNNodeKind.NONE) { - throw new Exception("The file does not exist.") + throw new Exception("The file does not exist.: " + url) } else if (nodeKind != SVNNodeKind.FILE) { - throw new Exception("Error not a file..") + throw new Exception("Error not a file..: " + url) } // present w/ file etc for repo extraction closure.call(repo, file)