Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.sra.biotech.submittool.persistence.client; /** * * @author Calvin */ import org.springframework.http.HttpStatus; public class RestUtil { public static boolean isError(HttpStatus status) { HttpStatus.Series series = status.series(); return (HttpStatus.Series.CLIENT_ERROR.equals(series) || HttpStatus.Series.SERVER_ERROR.equals(series)); } }