diff --git a/scm-core/src/main/java/sonia/scm/repository/BranchNotFoundException.java b/scm-core/src/main/java/sonia/scm/repository/BranchNotFoundException.java deleted file mode 100644 index a4a1c66d67..0000000000 --- a/scm-core/src/main/java/sonia/scm/repository/BranchNotFoundException.java +++ /dev/null @@ -1,9 +0,0 @@ -package sonia.scm.repository; - -import sonia.scm.NotFoundException; - -public class BranchNotFoundException extends NotFoundException { - public BranchNotFoundException(String branch) { - super("branch", branch); - } -}