All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flowthings.client.response.ObjectResponse Maven / Gradle / Ivy

There is a newer version: 0.9.3.2
Show newest version
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