ru.breffi.storyclmsdk.Exceptions.ResultConvertException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of storyclmsdk Show documentation
Show all versions of storyclmsdk Show documentation
StoryCLM — a digital-platform developed by BREFFI, allowing you to create interactive presentations with immediate feedback on the change in the customer perception of the brand and the representative’s activity.
package ru.breffi.storyclmsdk.Exceptions;
import com.google.gson.JsonSyntaxException;
@SuppressWarnings("serial")
public class ResultConvertException extends AsyncResultException{
public ResultConvertException(String message, JsonSyntaxException e) {
super(message,e);
}
}