Skip to content

Commit e36f099

Browse files
authoredApr 1, 2024
StatusException/StatusRuntimeException hide stack trace in a simpler way (#11064)
1 parent 0866e71 commit e36f099

File tree

2 files changed

+4
-29
lines changed

2 files changed

+4
-29
lines changed
 

‎api/src/main/java/io/grpc/StatusException.java

+2-14
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public class StatusException extends Exception {
2727
private static final long serialVersionUID = -660954903976144640L;
2828
private final Status status;
2929
private final Metadata trailers;
30-
private final boolean fillInStackTrace;
3130

3231
/**
3332
* Constructs an exception with both a status. See also {@link Status#asException()}.
@@ -49,21 +48,10 @@ public StatusException(Status status, @Nullable Metadata trailers) {
4948
}
5049

5150
StatusException(Status status, @Nullable Metadata trailers, boolean fillInStackTrace) {
52-
super(Status.formatThrowableMessage(status), status.getCause());
51+
super(Status.formatThrowableMessage(status), status.getCause(),
52+
/* enableSuppression */ true, /* writableStackTrace */fillInStackTrace);
5353
this.status = status;
5454
this.trailers = trailers;
55-
this.fillInStackTrace = fillInStackTrace;
56-
fillInStackTrace();
57-
}
58-
59-
@Override
60-
public synchronized Throwable fillInStackTrace() {
61-
// Let's observe final variables in two states! This works because Throwable will invoke this
62-
// method before fillInStackTrace is set, thus doing nothing. After the constructor has set
63-
// fillInStackTrace, this method will properly fill it in. Additionally, sub classes may call
64-
// this normally, because fillInStackTrace will either be set, or this method will be
65-
// overriden.
66-
return fillInStackTrace ? super.fillInStackTrace() : this;
6755
}
6856

6957
/**

‎api/src/main/java/io/grpc/StatusRuntimeException.java

+2-15
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ public class StatusRuntimeException extends RuntimeException {
2929
private final Status status;
3030
private final Metadata trailers;
3131

32-
private final boolean fillInStackTrace;
33-
3432
/**
3533
* Constructs the exception with both a status. See also {@link Status#asRuntimeException()}.
3634
*
@@ -51,21 +49,10 @@ public StatusRuntimeException(Status status, @Nullable Metadata trailers) {
5149
}
5250

5351
StatusRuntimeException(Status status, @Nullable Metadata trailers, boolean fillInStackTrace) {
54-
super(Status.formatThrowableMessage(status), status.getCause());
52+
super(Status.formatThrowableMessage(status), status.getCause(),
53+
/* enable suppressions */ true, /* writableStackTrace */ fillInStackTrace);
5554
this.status = status;
5655
this.trailers = trailers;
57-
this.fillInStackTrace = fillInStackTrace;
58-
fillInStackTrace();
59-
}
60-
61-
@Override
62-
public synchronized Throwable fillInStackTrace() {
63-
// Let's observe final variables in two states! This works because Throwable will invoke this
64-
// method before fillInStackTrace is set, thus doing nothing. After the constructor has set
65-
// fillInStackTrace, this method will properly fill it in. Additionally, sub classes may call
66-
// this normally, because fillInStackTrace will either be set, or this method will be
67-
// overriden.
68-
return fillInStackTrace ? super.fillInStackTrace() : this;
6956
}
7057

7158
/**

0 commit comments

Comments
 (0)