mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
added javadoc for RevisionNotFoundException
This commit is contained in:
@@ -38,6 +38,7 @@ package sonia.scm.repository;
|
|||||||
import sonia.scm.util.Util;
|
import sonia.scm.util.Util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Signals that the specified revision could be found.
|
||||||
*
|
*
|
||||||
* @author Sebastian Sdorra
|
* @author Sebastian Sdorra
|
||||||
*/
|
*/
|
||||||
@@ -50,10 +51,11 @@ public class RevisionNotFoundException extends RepositoryException
|
|||||||
//~--- constructors ---------------------------------------------------------
|
//~--- 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)
|
public RevisionNotFoundException(String revision)
|
||||||
{
|
{
|
||||||
@@ -64,10 +66,10 @@ public class RevisionNotFoundException extends RepositoryException
|
|||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method description
|
* Return the revision which could not be found.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @return
|
* @return revision which could not be found
|
||||||
*/
|
*/
|
||||||
public String getRevision()
|
public String getRevision()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user