public class ServerSideException extends StatusException
| Constructor and Description |
|---|
ServerSideException(java.lang.String message,
io.grpc.Status status)
Exception indicating an error occurred on server side which
indicate there is some problem on the server side that might
persist for some time.
|
ServerSideException(java.lang.String message,
io.grpc.Status status,
java.lang.Throwable cause)
Exception indicating an error occurred on server side which
indicate there is some problem on the server side that might
persist for some time.
|
getStatuspublic ServerSideException(java.lang.String message,
io.grpc.Status status)
message - detail message of the exception.status - The underlying GRPC status code, might be null.public ServerSideException(java.lang.String message,
io.grpc.Status status,
java.lang.Throwable cause)
message - detail message of the exception.status - The underlying GRPC status code, might be null.cause - the underlying exception.