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,ConfException,ConflictingComponentDefinitionException,ExecutionException,InvalidStreamsStateException,NotFoundException
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 newAzkarraExceptioninstance.AzkarraException(String message, Throwable cause)Creates a newAzkarraExceptioninstance.AzkarraException(Throwable cause)Creates a newAzkarraExceptioninstance.
-
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 newAzkarraExceptioninstance.- Parameters:
message- the error message.
-
AzkarraException
public AzkarraException(String message, Throwable cause)
Creates a newAzkarraExceptioninstance.- Parameters:
message- the error message.cause- the error cause.
-
AzkarraException
public AzkarraException(Throwable cause)
Creates a newAzkarraExceptioninstance.- Parameters:
cause- the error cause.
-
-