
io.serialized.client.ApiException Maven / Gradle / Ivy
package io.serialized.client;
public class ApiException extends RuntimeException {
private final int statusCode;
public ApiException(int statusCode, String message) {
super(message);
this.statusCode = statusCode;
}
public int getStatusCode() {
return statusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy