WIP: WebClient -- DIE LĂ–SUNG! -- Feinschliff...
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiException.java
index 2e56e62..1d360db 100644 (file)
@@ -12,8 +12,6 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.http.HttpHeaders;
 import org.springframework.http.HttpStatus;
-import org.springframework.web.reactive.function.client.ClientResponse;
-import reactor.core.publisher.Mono;
 
 
 
@@ -45,15 +43,6 @@ public class GraphApiException extends RuntimeException
 
 
 
-  public static GraphApiException create(ClientResponse response)
-  {
-    Mono<String> body =
-        response
-            .bodyToMono(String.class);
-    Mono<GraphApiException> e = body
-            .map(str -> create(response.statusCode(), null, str.getBytes()));
-  }
-
   public static GraphApiException create(
       HttpStatus status,
       HttpHeaders headers,