com.shopify.exceptions.ShopifyClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shopify-sdk Show documentation
Show all versions of shopify-sdk Show documentation
Java SDK for Shopify REST API.
package com.shopify.exceptions;
public class ShopifyClientException extends RuntimeException {
private static final long serialVersionUID = -5992356578452439224L;
public ShopifyClientException(final Throwable throwable) {
super(throwable);
}
public ShopifyClientException(final String message, final Throwable throwable) {
super(message, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy