com.beijunyi.parallelgit.utils.exceptions.BranchAlreadyExistsException Maven / Gradle / Ivy
package com.beijunyi.parallelgit.utils.exceptions;
import javax.annotation.Nonnull;
public class BranchAlreadyExistsException extends RuntimeException {
public BranchAlreadyExistsException(@Nonnull String refName) {
super("Branch " + refName + " already exists");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy