com.targomo.client.api.exception.TargomoClientRuntimeException 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;
/**
* Excpetion thrown when there is a runtime exception in a request to a Targomo API
*/
public class TargomoClientRuntimeException extends RuntimeException {
private static final long serialVersionUID = -7860204374116258864L;
/**
* @param message Description of the exception
* @param throwable cause of the exception
*/
public TargomoClientRuntimeException(String message, Throwable throwable) {
super(message, throwable);
}
/**
* @param message Description of the exception
*/
public TargomoClientRuntimeException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy