com.targomo.client.api.exception.ResponseErrorException 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.
package com.targomo.client.api.exception;
import com.targomo.client.api.response.ResponseCode;
import lombok.Getter;
public class ResponseErrorException extends Exception {
@Getter
private final ResponseCode errorCode;
public ResponseErrorException(ResponseCode errorCode, String message) {
super(message);
this.errorCode = errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy