File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/apache/commons/lang3/exception Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,29 +49,29 @@ public interface ExceptionContext {
4949 ExceptionContext addContextValue (String label , Object value );
5050
5151 /**
52- * Retrieves the full list of label-value pairs defined in the contextual data.
52+ * Gets the full list of label-value pairs defined in the contextual data.
5353 *
5454 * @return the list of pairs, not {@code null}
5555 */
5656 List <Pair <String , Object >> getContextEntries ();
5757
5858 /**
59- * Retrieves the full set of labels defined in the contextual data.
59+ * Gets the full set of labels defined in the contextual data.
6060 *
6161 * @return the set of labels, not {@code null}
6262 */
6363 Set <String > getContextLabels ();
6464
6565 /**
66- * Retrieves all the contextual data values associated with the label.
66+ * Gets all the contextual data values associated with the label.
6767 *
6868 * @param label the label to get the contextual values for, may be {@code null}
6969 * @return the contextual values associated with the label, never {@code null}
7070 */
7171 List <Object > getContextValues (String label );
7272
7373 /**
74- * Retrieves the first available contextual data value associated with the label.
74+ * Gets the first available contextual data value associated with the label.
7575 *
7676 * @param label the label to get the contextual value for, may be {@code null}
7777 * @return the first contextual value associated with the label, may be {@code null}
You can’t perform that action at this time.
0 commit comments