Add Javadoc for LFS exception messages

Change-Id: I4967b5f7a9a7e9488d20f60aaa949efe97442429
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2016-08-29 12:04:42 +09:00 committed by Matthias Sohn
parent 3100662a5a
commit ac85672022
7 changed files with 7 additions and 0 deletions

View File

@ -54,6 +54,7 @@ public class LfsBandwidthLimitExceeded extends LfsException {
/**
* @param message
* error message, which may be shown to an end-user.
*/
public LfsBandwidthLimitExceeded(String message) {
super(message);

View File

@ -53,6 +53,7 @@ public class LfsException extends Exception {
/**
* @param message
* error message, which may be shown to an end-user.
*/
public LfsException(String message) {
super(message);

View File

@ -54,6 +54,7 @@ public class LfsInsufficientStorage extends LfsException {
/**
* @param message
* error message, which may be shown to an end-user.
*/
public LfsInsufficientStorage(String message) {
super(message);

View File

@ -54,6 +54,7 @@ public class LfsRateLimitExceeded extends LfsException {
/**
* @param message
* error message, which may be shown to an end-user.
*/
public LfsRateLimitExceeded(String message) {
super(message);

View File

@ -57,6 +57,7 @@ public class LfsRepositoryNotFound extends LfsException {
/**
* @param name
* the repository name.
*
*/
public LfsRepositoryNotFound(String name) {

View File

@ -58,6 +58,7 @@ public class LfsRepositoryReadOnly extends LfsException {
/**
* @param name
* the repository name.
*/
public LfsRepositoryReadOnly(String name) {
super(MessageFormat.format(LfsText.get().repositoryReadOnly, name));

View File

@ -54,6 +54,7 @@ public class LfsValidationError extends LfsException {
/**
* @param message
* error message, which may be shown to an end-user.
*/
public LfsValidationError(String message) {
super(message);