Class AzkarraException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.streamthoughts.azkarra.api.errors.AzkarraException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AlreadyExistsException
,AzkarraContextException
,AzkarraRetriableException
,BadRequestException
,ConfException
,ConflictingComponentDefinitionException
,Credentials.UnsupportedCredentialException
,ExecutionException
,InvalidStateStoreQueryException
,InvalidStreamsStateException
,MetricNotFoundException
,NotFoundException
,SerializationException
,UnauthorizedAccessException
public class AzkarraException extends RuntimeException
AzkarraException is the top-level error type generated by the core-api.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AzkarraException(String message)
Creates a newAzkarraException
instance.AzkarraException(String message, Throwable cause)
Creates a newAzkarraException
instance.AzkarraException(Throwable cause)
Creates a newAzkarraException
instance.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AzkarraException
public AzkarraException(String message)
Creates a newAzkarraException
instance.- Parameters:
message
- the error message.
-
AzkarraException
public AzkarraException(String message, Throwable cause)
Creates a newAzkarraException
instance.- Parameters:
message
- the error message.cause
- the error cause.
-
AzkarraException
public AzkarraException(Throwable cause)
Creates a newAzkarraException
instance.- Parameters:
cause
- the error cause.
-
-