in vault-connection/src/jetbrains/buildServer/buildTriggers/vcs/vault/impl/VaultConnectionImpl.java [282:291]
private void deleteLabel(@NotNull String path, @NotNull String label) throws VcsException {
try {
ServerOperations.ProcessCommandDeleteLabel(ensureRepoPath(path), label);
} catch (Exception e) {
if ((e.getMessage() != null) && e.getMessage().contains("Could not find label")) {
return;
}
throw new VcsException(e);
}
}