com.flowthings.client.response.ObjectResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowthings-client-core Show documentation
Show all versions of flowthings-client-core Show documentation
A client library for flowthings.io realtime event processing
package com.flowthings.client.response;
public class ObjectResponse extends Response {
public static class ERROR extends ObjectResponse {
@Override
public T get() {
throw new IllegalStateException("Cannot get body of an error response");
}
@Override
public T getBody() {
throw new IllegalStateException("Cannot get body of an error response");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy