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

com.targomo.client.api.exception.TargomoClientRequestConfigurationException Maven / Gradle / Ivy

There is a newer version: 0.39.0
Show newest version
package com.targomo.client.api.exception;

/**
 * Exception thrown when there is an error in the definition of a request configuration object
 */
public class TargomoClientRequestConfigurationException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    /**
     * @param error
     * @param e
     */
    public TargomoClientRequestConfigurationException(String error, Exception e) {
        super(error, e);
    }

    public TargomoClientRequestConfigurationException(String error) {
        super(error);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy