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

com.indix.exception.IndixApiException Maven / Gradle / Ivy

package com.indix.exception;

/**
 * Base Indix API exception
 */
public class IndixApiException extends Exception {
    private int errorCode;

    public IndixApiException() {
        super();
    }

    public IndixApiException(String message) {
        super(message);
    }

    public IndixApiException(int _errorCode, String message) {
        super(message);
        errorCode = _errorCode;
    }

    public IndixApiException(String message, Throwable cause) {
        super(message, cause);
    }

    public IndixApiException(Throwable cause) {
        super(cause);
    }

    public int getErrorCode() {
        return errorCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy