com.inpaas.http.model.exception.ServiceImportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inpaas-httpclient Show documentation
Show all versions of inpaas-httpclient Show documentation
HTTP Client for REST and SOAP Services
package com.inpaas.http.model.exception;
public class ServiceImportException extends Exception {
private final String url;
public ServiceImportException(String message, String url, Throwable cause) {
super(message, cause);
this.url = url;
}
public final String getUrl() {
return url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy