com.aliction.gitproviders.bitbucket.exceptions.BitbucketGetRepositoryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitbucket-client Show documentation
Show all versions of bitbucket-client Show documentation
Java Implementation to Bitbucket REST API
package com.aliction.gitproviders.bitbucket.exceptions;
/**
*
* @author Aly Ibrahim
* Date: Oct 23, 2019
*
*/
public class BitbucketGetRepositoryException extends BitbucketException {
/**
*
*/
private static final long serialVersionUID = 3913396652285600977L;
/**
*
* @param errorMsg - String error message
*/
public BitbucketGetRepositoryException(String errorMsg) {
super(errorMsg);
// TODO Auto-generated constructor stub
}
}