Merge "Add a hint on the purpose of JGitInternalException to the constructor"

This commit is contained in:
Christian Halstrick 2012-10-14 17:06:20 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 5fc7bd783b
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,8 @@ public class JGitInternalException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Construct an exception for low-level internal exceptions
*
* @param message
* @param cause
*/
@ -68,6 +70,8 @@ public JGitInternalException(String message, Throwable cause) {
}
/**
* Construct an exception for low-level internal exceptions
*
* @param message
*/
public JGitInternalException(String message) {