All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gocart.exceptions.GoCartApiException Maven / Gradle / Ivy

Go to download

A java client library designed to make it easier for merchants to integrate with GoCart API

The newest version!
package com.gocart.exceptions;

/**
 * Exception thrown when the GoCart Api returns a bad response code
 */
public class GoCartApiException extends GoCartException {
    public GoCartApiException(String errorMessage, Throwable e) {
        super(errorMessage, e);
    }

    public GoCartApiException(Throwable e) {
        super(e);
    }

    public GoCartApiException(String errorMessage) {
        super(errorMessage);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy