groovyx.net.http.TransportingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-builder-ng-core Show documentation
Show all versions of http-builder-ng-core Show documentation
Groovy client for making http requests.
package groovyx.net.http;
public class TransportingException extends RuntimeException {
public TransportingException(final String message, final Throwable cause) {
super(message, cause);
}
public TransportingException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy