Przeglądaj źródła

add status code to ApiException message

tags/2.0.1
Jonathan Cobb 4 lat temu
rodzic
commit
073106e5cd
1 zmienionych plików z 2 dodań i 4 usunięć
  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 Wyświetl plik

@@ -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; }

}

Ładowanie…
Anuluj
Zapisz