Procházet zdrojové kódy

add status code to ApiException message

tags/2.0.1
Jonathan Cobb před 4 roky
rodič
revize
073106e5cd
1 změnil soubory, kde provedl 2 přidání a 4 odebrání
  1. +2
    -4
      wizard-common/src/main/java/org/cobbzilla/wizard/api/ApiException.java

+ 2
- 4
wizard-common/src/main/java/org/cobbzilla/wizard/api/ApiException.java Zobrazit soubor

@@ -6,19 +6,17 @@ import lombok.ToString;
import org.cobbzilla.util.http.HttpRequestBean;
import org.cobbzilla.wizard.util.RestResponse;

import static org.cobbzilla.util.json.JsonUtil.json;

@AllArgsConstructor @ToString
public class ApiException extends RuntimeException {

@Getter private HttpRequestBean request;
@Getter private RestResponse response;
@Getter private final RestResponse response;

public ApiException (RestResponse response) {
super(response.status+": "+response.json);
this.response = response;
}

@Override public String getMessage () { return response.json; }
@Override public String getMessage () { return response.status + ": " + response.json; }

}

Načítá se…
Zrušit
Uložit