com.solace.spring.cloud.stream.binder.util.UnboundFlowReceiverContainerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-stream-binder-solace Show documentation
Show all versions of spring-cloud-stream-binder-solace Show documentation
A Spring Cloud Stream Binder implementation using the Solace Java API (JCSMP)
package com.solace.spring.cloud.stream.binder.util;
/**
* Flow receiver container is not bound to a flow receiver.
* Typically caused by one of:
*
* - {@link FlowReceiverContainer#unbind()}
*
*/
public class UnboundFlowReceiverContainerException extends Exception {
public UnboundFlowReceiverContainerException(String message) {
super(message);
}
}