return throwable;
}
public Map<String,?> toMap() {
Map<String,Object> m = new LinkedHashMap<String,Object>();
HttpStatus status = getStatus();
m.put(STATUS_PROP_NAME, status.value());
int code = getCode();
if (code <= 0) {
code = status.value();
}
m.put(CODE_PROP_NAME, code);
String httpStatusMessage = null;