Change-Id: I1e5bea968b3c79df4f600b75fde5b547ebadde36
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
/**
* Given a commit, show the most recent tag that is reachable from a commit.
*
- * @since 3.1
+ * @since 3.2
*/
public class DescribeCommand extends GitCommand<String> {
private final RevWalk w;
* commit in terms of the nearest git tag.
*
* @return a {@link DescribeCommand}.
- * @since 3.1
+ * @since 3.2
*/
public DescribeCommand describe() {
return new DescribeCommand(repo);
* be shown to an end-user.
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(String msg, Throwable cause) {
super(msg);
*
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(Throwable cause) {
this(JGitText.get().internalServerError, cause);