in vault-connection/src/jetbrains/buildServer/buildTriggers/vcs/vault/impl/VaultConnectionImpl.java [137:147]
private boolean isExistingFile(@NotNull String path) {
if (objectExists(path)) {
try {
RepositoryUtil.FindVaultFileAtReposOrLocalPath(ensureRepoPath(path));
return true;
} catch (Throwable th) {
// continue
}
}
return false;
}