Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit 1b68e74

Browse files
committed
Don't mention parsing in TagContextDeserializationException Javadoc.
1 parent 28f8581 commit 1b68e74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/src/main/java/io/opencensus/tags/propagation/TagContextDeserializationException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public final class TagContextDeserializationException extends Exception {
2525
/**
2626
* Constructs a new {@code TagContextParseException} with the given message.
2727
*
28-
* @param message a message describing the parse error.
28+
* @param message a message describing the error.
2929
*/
3030
public TagContextDeserializationException(String message) {
3131
super(message);
@@ -34,8 +34,8 @@ public TagContextDeserializationException(String message) {
3434
/**
3535
* Constructs a new {@code TagContextParseException} with the given message and cause.
3636
*
37-
* @param message a message describing the parse error.
38-
* @param cause the cause of the parse error.
37+
* @param message a message describing the error.
38+
* @param cause the cause of the error.
3939
*/
4040
public TagContextDeserializationException(String message, Throwable cause) {
4141
super(message, cause);

0 commit comments

Comments
 (0)