Class GrpcMessageSizeExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.axonserver.connector.util.GrpcMessageSizeExceededException
- All Implemented Interfaces:
Serializable
Exception thrown when a message exceeds the maximum allowed size. This means that the application has tried
to send a message to Axon Server that is too large. This can be a command, query, response, or any other message.
- Since:
- 4.11.0
- Author:
- Mitchell Herrijgers
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGrpcMessageSizeExceededException(String message) Creates a new exception that indicates the gRPC message size has been exceeded with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GrpcMessageSizeExceededException
Creates a new exception that indicates the gRPC message size has been exceeded with the given message.- Parameters:
message- the message to include in the exception
-