Class ErrorEntry
- java.lang.Object
-
- io.siddhi.core.util.error.handler.model.ErrorEntry
-
public class ErrorEntry extends Object
Represents an entry which represents an error, in theErrorStore.
-
-
Constructor Summary
Constructors Constructor Description ErrorEntry(int id, long timestamp, String siddhiAppName, String streamName, byte[] eventAsBytes, String cause, String stackTrace, String originalPayload, ErrorOccurrence errorOccurrence, ErroneousEventType eventType, ErrorType errorType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCause()ErrorOccurrencegetErrorOccurrence()ErrorTypegetErrorType()byte[]getEventAsBytes()ErroneousEventTypegetEventType()intgetId()StringgetOriginalPayload()StringgetSiddhiAppName()StringgetStackTrace()StringgetStreamName()longgetTimestamp()
-
-
-
Constructor Detail
-
ErrorEntry
public ErrorEntry(int id, long timestamp, String siddhiAppName, String streamName, byte[] eventAsBytes, String cause, String stackTrace, String originalPayload, ErrorOccurrence errorOccurrence, ErroneousEventType eventType, ErrorType errorType)
-
-
Method Detail
-
getId
public int getId()
-
getTimestamp
public long getTimestamp()
-
getSiddhiAppName
public String getSiddhiAppName()
-
getStreamName
public String getStreamName()
-
getEventAsBytes
public byte[] getEventAsBytes()
-
getCause
public String getCause()
-
getStackTrace
public String getStackTrace()
-
getOriginalPayload
public String getOriginalPayload()
-
getErrorOccurrence
public ErrorOccurrence getErrorOccurrence()
-
getEventType
public ErroneousEventType getEventType()
-
getErrorType
public ErrorType getErrorType()
-
-