Bläddra i källkod

add status code to ApiException message

tags/2.0.1
Jonathan Cobb 4 år sedan
förälder
incheckning
073106e5cd
1 ändrade filer med 2 tillägg och 4 borttagningar
  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 Visa fil

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

}

Laddar…
Avbryt
Spara