Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java
index 92599ca7d6..9760c49e96 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/GitAPIException.java
@@ -48,6 +48,11 @@ public abstract class GitAPIException extends Exception {
/**
* Constructs a new exception with the specified detail
* message and cause.
+ *
+ * @param message
+ * detail message
+ * @param cause
+ * cause
*/
protected GitAPIException(String message, Throwable cause) {
super(message, cause);
@@ -56,6 +61,9 @@ public abstract class GitAPIException extends Exception {
/**
* Constructs a new exception with the specified detail
* message and no cause.
+ *
+ * @param message
+ * detail message
*/
protected GitAPIException(String message) {
super(message);

Back to the top