(Status status, T value)
| 28 | @ExperimentalApi("https://github.com/grpc/grpc-java/issues/11563") |
| 29 | public class StatusOr<T> { |
| 30 | private StatusOr(Status status, T value) { |
| 31 | this.status = status; |
| 32 | this.value = value; |
| 33 | } |
| 34 | |
| 35 | /** Construct from a value. */ |
| 36 | public static <T> StatusOr<T> fromValue(T value) { |
nothing calls this directly
no outgoing calls
no test coverage detected