net.commuty.parking.http.ApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parking-access-api-client Show documentation
Show all versions of parking-access-api-client Show documentation
This package acts as a client to communicate with the Commuty Parking Access API. It avoids you to deal with HTTP directly and provides you proper data structures to work with the API.
The newest version!
package net.commuty.parking.http;
/**
* Any Exception that the client can throw.
* You can either catch This exception, or use the more specific exceptions ({@link CredentialsException}, {@link HttpRequestException}, {@link HttpClientException}).
*/
public class ApiException extends Exception {
protected ApiException() {}
protected ApiException(Throwable cause) {
super(cause);
}
protected ApiException(String message) {
super(message);
}
protected ApiException(String message, Throwable cause) {
super(message, cause);
}
}