Interface ExceptionContext

All Superinterfaces:
Serializable, Supplier<String>

@Experimental public interface ExceptionContext extends Supplier<String>, Serializable
Additional information for an exception. It is NOT to be displayed to the user along with the exception, but it should be recorded in the logs. It is intended to provide additional context for the exception when diagnosing it. The goal is to simplify the error handling code in cases where we need to log additional information. Instead of issuing extra logging calls (including e.g. redundant construction of the error message), one simply adds the additional information to the log message, and the methods LoggingUtils will do the rest.
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    of(String message)
     

    Methods inherited from interface java.util.function.Supplier

    get