Package org.projectnessie.error
Class NessieNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.projectnessie.error.BaseNessieClientServerException
-
- org.projectnessie.error.NessieNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable,ErrorCodeAware
- Direct Known Subclasses:
NessieContentNotFoundException,NessieNamespaceNotFoundException,NessieReferenceNotFoundException
public abstract class NessieNotFoundException extends BaseNessieClientServerException
Base class for all exceptions that are represented by the HTTPNot Foundstatus code (404).This exception should not be instantiated directly on the server-side. It may be instantiated and thrown on the client side to represent cases when the server responded with the HTTP
Not Foundstatus code, but no fine-grained error information was available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedNessieNotFoundException(java.lang.String message)protectedNessieNotFoundException(java.lang.String message, java.lang.Throwable cause)protectedNessieNotFoundException(NessieError error)
-
Method Summary
-
Methods inherited from class org.projectnessie.error.BaseNessieClientServerException
getErrorCode, getServerStackTrace, getStatus
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.projectnessie.error.ErrorCodeAware
getErrorDetails
-
-
-
-
Constructor Detail
-
NessieNotFoundException
protected NessieNotFoundException(java.lang.String message, java.lang.Throwable cause)
-
NessieNotFoundException
protected NessieNotFoundException(java.lang.String message)
-
NessieNotFoundException
protected NessieNotFoundException(NessieError error)
-
-