Package org.kie.api.executor
Interface ErrorInfo
-
public interface ErrorInfo
Represents Error information of the executor service data model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getId()
String
getMessage()
String
getStacktrace()
Date
getTime()
-
-
-
Method Detail
-
getId
Long getId()
- Returns:
- unique identifier of the error instance.
-
getMessage
String getMessage()
- Returns:
- error message for the error instance.
-
getStacktrace
String getStacktrace()
- Returns:
- complete stack trace of the exception that generated this error instance
-
getTime
Date getTime()
- Returns:
- exact time when the exception happened.
-
-