]> source.dussan.org Git - jgit.git/commitdiff
Add a hint on the purpose of JGitInternalException to the constructor 79/8079/3
authorRobin Rosenberg <robin.rosenberg@dewire.com>
Mon, 8 Oct 2012 04:27:30 +0000 (06:27 +0200)
committerRobin Rosenberg <robin.rosenberg@dewire.com>
Sun, 14 Oct 2012 18:55:14 +0000 (20:55 +0200)
In code review we often see uses of JGitInternalException where a high
level GitAPIException would be more appropriate. Hopefully the word
low-level in the constructor comment will lead to fewer such cases.

Change-Id: Id5ec7897535f6c5c5f0bd153fe0ff15c65083474

org.eclipse.jgit/src/org/eclipse/jgit/api/errors/JGitInternalException.java

index 9042daddcc61c74f3d60e92efe6e9ac06160723c..ca562005ff7c2b353ebc7623865efb813aca13cd 100644 (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 class JGitInternalException extends RuntimeException {
        }
 
        /**
+        * Construct an exception for low-level internal exceptions
+        *
         * @param message
         */
        public JGitInternalException(String message) {