io.vrap.rmf.base.client.utils.json.JsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmf-java-base Show documentation
Show all versions of rmf-java-base Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
package io.vrap.rmf.base.client.utils.json;
import io.vrap.rmf.base.client.ApiHttpResponse;
import io.vrap.rmf.base.client.error.BaseException;
public class JsonException extends BaseException {
private static final long serialVersionUID = 0L;
public JsonException(final String message) {
super(message);
}
public JsonException(final Throwable cause) {
super(cause);
}
public JsonException(final String message, final Throwable cause) {
super(message, cause);
}
public JsonException(final ApiHttpResponse httpResponse) {
super(httpResponse.toString());
}
}