Error callback in subscribe is not mapped to JSON trough map function! Why?
this.http.get("/something")
.map((response: any) => response.json())
.subscribe((response: any) => {
// response is body of request
}, (error: any) => {
// error must be mapped again
let error = JSON.parse(error._body);
});