Home
last modified time | relevance | path

Searched refs:toStatusRuntimeException (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc-java/protobuf/src/test/java/io/grpc/protobuf/
DStatusProtoTest.java45 public void toStatusRuntimeException() throws Exception { in toStatusRuntimeException() method in StatusProtoTest
46 StatusRuntimeException sre = StatusProto.toStatusRuntimeException(STATUS_PROTO); in toStatusRuntimeException()
56 StatusRuntimeException sre = StatusProto.toStatusRuntimeException(STATUS_PROTO, metadata); in toStatusRuntimeExceptionWithMetadata_shouldIncludeMetadata()
69 StatusProto.toStatusRuntimeException(STATUS_PROTO, null); in toStatusRuntimeExceptionWithMetadata_shouldThrowIfMetadataIsNull()
79 StatusProto.toStatusRuntimeException(INVALID_STATUS_PROTO); in toStatusRuntimeException_shouldThrowIfStatusCodeInvalid()
147 StatusRuntimeException sre = StatusProto.toStatusRuntimeException(STATUS_PROTO); in fromThrowableWithNestedStatusRuntimeException()
/external/grpc-grpc-java/protobuf/src/main/java/io/grpc/protobuf/
DStatusProto.java51 public static StatusRuntimeException toStatusRuntimeException(com.google.rpc.Status statusProto) { in toStatusRuntimeException() method in StatusProto
68 public static StatusRuntimeException toStatusRuntimeException( in toStatusRuntimeException() method in StatusProto
/external/grpc-grpc-java/stub/src/main/java/io/grpc/stub/
DClientCalls.java214 throw toStatusRuntimeException(e.getCause()); in getUnchecked()
224 private static StatusRuntimeException toStatusRuntimeException(Throwable t) { in toStatusRuntimeException() method in ClientCalls