Skip to content

Commit 73b235e

Browse files
committed
EVCSBranchNotFound.java moved from scm4j-vcs-git
1 parent 56b44d5 commit 73b235e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package org.scm4j.vcs.api.exceptions;
2+
3+
public class EVCSBranchNotFound extends EVCSException {
4+
5+
private static final long serialVersionUID = 1L;
6+
7+
public EVCSBranchNotFound(String repoUrl, String branchName) {
8+
super(String.format("branch %s is not found in repo %s", branchName, repoUrl));
9+
}
10+
11+
}

0 commit comments

Comments
 (0)