@@ -27,7 +27,6 @@ public class StatusException extends Exception {
27
27
private static final long serialVersionUID = -660954903976144640L ;
28
28
private final Status status ;
29
29
private final Metadata trailers ;
30
- private final boolean fillInStackTrace ;
31
30
32
31
/**
33
32
* Constructs an exception with both a status. See also {@link Status#asException()}.
@@ -49,21 +48,10 @@ public StatusException(Status status, @Nullable Metadata trailers) {
49
48
}
50
49
51
50
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 );
53
53
this .status = status ;
54
54
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 ;
67
55
}
68
56
69
57
/**
0 commit comments