diff options
author | Christian Halstrick <christian.halstrick@sap.com> | 2012-10-14 17:06:20 -0400 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2012-10-14 17:06:20 -0400 |
commit | 5fc7bd783be8513eea441bd14d573f69ba88f175 (patch) | |
tree | 7b0d269d0c51e96489bc619ef6696e96830193ce | |
parent | c8ed4a5006d921fdc61e3647505c2254c4aefbdc (diff) | |
parent | 47a9b996c75421e1d7f4dafdc0825bfe9938e94e (diff) | |
download | jgit-5fc7bd783be8513eea441bd14d573f69ba88f175.tar.gz jgit-5fc7bd783be8513eea441bd14d573f69ba88f175.zip |
Merge "Add a hint on the purpose of JGitInternalException to the constructor"
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java index 9042daddcc..ca562005ff 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java @@ -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 class JGitInternalException extends RuntimeException { } /** + * Construct an exception for low-level internal exceptions + * * @param message */ public JGitInternalException(String message) { |