Package org.projectnessie.versioned
Class RefLogNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.projectnessie.versioned.VersionStoreException
-
- org.projectnessie.versioned.RefLogNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class RefLogNotFoundException extends VersionStoreException
Exception thrown when a reflog is not present in the store.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RefLogNotFoundException(java.lang.String message)RefLogNotFoundException(java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RefLogNotFoundExceptionforRefLogId(java.lang.String refLogId)Create aRefLogNotFoundExceptioninstance based on the provided reference.
-
-
-
Method Detail
-
forRefLogId
@Nonnull @Nonnull public static RefLogNotFoundException forRefLogId(@Nonnull @Nonnull java.lang.String refLogId)
Create aRefLogNotFoundExceptioninstance based on the provided reference.- Parameters:
refLogId- the refLogId string not found in the store- Returns:
- a
RefLogNotFoundExceptioninstance - Throws:
java.lang.NullPointerException- ifrefLogIdisnull.
-
-