Package network.oxalis.api.error
Interface ErrorTracker
-
public interface ErrorTrackerDefining interface for tracking of exceptions received as result of external communication, both inbound and outbound.- Since:
- 4.0.2
- Author:
- erlend
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringtrack(Direction direction, Exception e, boolean handled)Method called where errors are gathered.
-
-
-
Method Detail
-
track
String track(Direction direction, Exception e, boolean handled)
Method called where errors are gathered.- Parameters:
direction- Direction of transmission where error occurred.e- The exception triggered.handled- Whether Oxalis were able to gracefully handle the exception using own relevant exception handling.- Returns:
- Identifier uniquely identifying the error in the error handling system or logging.
- Since:
- 4.0.2
-
-