com.targomo.client.api.exception.TargomoClientRequestConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for easy usage of Targomo web services.
The 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 - 2024 Weber Informatics LLC | Privacy Policy