Package org.bluezoo.gumdrop.grpc
Class GrpcException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.bluezoo.gumdrop.grpc.GrpcException
- All Implemented Interfaces:
Serializable
Exception for gRPC errors.
- Author:
- Chris Burdess
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGrpcException(String message) Creates a new exception with the given message.GrpcException(String message, Throwable cause) Creates a new exception with the given message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GrpcException
Creates a new exception with the given message.- Parameters:
message- the error message
-
GrpcException
Creates a new exception with the given message and cause.- Parameters:
message- the error messagecause- the cause
-