com.solace.spring.cloud.stream.binder.util.SolaceMessageConversionException 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;
public class SolaceMessageConversionException extends RuntimeException {
public SolaceMessageConversionException(String message) {
super(message);
}
public SolaceMessageConversionException(Throwable throwable) {
super(throwable);
}
public SolaceMessageConversionException(String message, Throwable throwable) {
super(message, throwable);
}
}