diff --git a/scm-core/src/main/java/sonia/scm/repository/RevisionNotFoundException.java b/scm-core/src/main/java/sonia/scm/repository/RevisionNotFoundException.java index e9f2c95fe1..a0fbd3f6a4 100644 --- a/scm-core/src/main/java/sonia/scm/repository/RevisionNotFoundException.java +++ b/scm-core/src/main/java/sonia/scm/repository/RevisionNotFoundException.java @@ -38,6 +38,7 @@ package sonia.scm.repository; import sonia.scm.util.Util; /** + * Signals that the specified revision could be found. * * @author Sebastian Sdorra */ @@ -50,10 +51,11 @@ public class RevisionNotFoundException extends RepositoryException //~--- constructors --------------------------------------------------------- /** - * Constructs ... + * Constructs a new {@link RevisionNotFoundException} + * with the specified revision. * * - * @param revision + * @param revision revision which could not be found */ public RevisionNotFoundException(String revision) { @@ -64,10 +66,10 @@ public class RevisionNotFoundException extends RepositoryException //~--- get methods ---------------------------------------------------------- /** - * Method description + * Return the revision which could not be found. * * - * @return + * @return revision which could not be found */ public String getRevision() {