Uses of Interface
org.apache.commons.lang3.exception.ExceptionContext
-
Packages that use ExceptionContext Package Description org.apache.commons.lang3.exception Provides functionality for Exceptions. -
-
Uses of ExceptionContext in org.apache.commons.lang3.exception
Classes in org.apache.commons.lang3.exception that implement ExceptionContext Modifier and Type Class Description classContextedExceptionAn exception that provides an easy and safe way to add contextual information.classContextedRuntimeExceptionA runtime exception that provides an easy and safe way to add contextual information.classDefaultExceptionContextDefault implementation of the context storing the label-value pairs for contexted exceptions.Methods in org.apache.commons.lang3.exception that return ExceptionContext Modifier and Type Method Description ExceptionContextExceptionContext. addContextValue(java.lang.String label, java.lang.Object value)Adds a contextual label-value pair into this context.ExceptionContextExceptionContext. setContextValue(java.lang.String label, java.lang.Object value)Sets a contextual label-value pair into this context.Constructors in org.apache.commons.lang3.exception with parameters of type ExceptionContext Constructor Description ContextedException(java.lang.String message, java.lang.Throwable cause, ExceptionContext context)Instantiates ContextedException with cause, message, and ExceptionContext.ContextedRuntimeException(java.lang.String message, java.lang.Throwable cause, ExceptionContext context)Instantiates ContextedRuntimeException with cause, message, and ExceptionContext.
-