Skip to content

Commit

Permalink
Add internal package verbiage to ExceptionEventData interface
Browse files Browse the repository at this point in the history
  • Loading branch information
HaloFour committed Feb 28, 2022
1 parent 69c570d commit a1d2057
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import io.opentelemetry.sdk.trace.SpanLimits;
import javax.annotation.concurrent.Immutable;

/** Data representation of a event. */
/** Data representation of an event. */
@Immutable
public interface EventData {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
import io.opentelemetry.api.common.Attributes;
import io.opentelemetry.sdk.trace.data.EventData;

/**
* Data representation of an event for a recorded exception.
*
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change
* at any time.
*/
public interface ExceptionEventData extends EventData {

/**
Expand Down

0 comments on commit a1d2057

Please sign in to comment.